OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
FORMULA
EXAMPLE
a(2) = 66 because the sum of aliquot divisors of 66 (which is a triangular number) is 1+2+3+6+11+22+33 = 78 which is greater than 66, hence it is abundant. 66 is the 2nd abundant triangular number.
MATHEMATICA
Select[Accumulate[Range[150]], Total[Divisors[#]]>2#&] (* Harvey P. Dale, Dec 18 2014 *)
PROG
(PARI) listA074315(m) = {for (i=1, m, t = i*(i+1)/2; if (sigma(t) > 2*t, print1(t, ", ")); ); } \\ up to the m-th triangular number; Michel Marcus, Mar 10 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Sep 22 2002
STATUS
approved
