login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A131972
Sum of all n-digit Apery numbers.
0
2, 24, 180, 7420, 33264, 991848, 3938220, 103832872, 389398464, 9620555000, 34901442000, 828288777420, 2940343837200, 67898251759800, 237371722628040, 5373868753340880, 97581248745060600, 335240928272918304, 7415892272293658608, 25286571126114014640, 553714770886681187168
OFFSET
1,1
EXAMPLE
Sum of all 1-digit Apery numbers is 0 + 2 = 2.
Sum of all 2-digit Apery numbers is 24
Sum of all 3-digit Apery numbers is 180.
MATHEMATICA
digNum[n_] := Length @ IntegerDigits[n]; apery[n_] := n^2 * Binomial[2n, n]; digCount = 0; sum = 0; cumsum = {}; Do[a = apery[n]; If[digNum[a] > digCount, digCount++; AppendTo[cumsum, sum]]; sum += a, {n, 0, 35}]; Differences[cumsum] (* Amiram Eldar, Nov 30 2019 *)
CROSSREFS
Cf. A002736.
Sequence in context: A073066 A002736 A309318 * A059387 A126190 A121356
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, Oct 06 2007
EXTENSIONS
More terms from Amiram Eldar, Nov 30 2019
STATUS
approved