login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)