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
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, Oct 06 2007
EXTENSIONS
More terms from Amiram Eldar, Nov 30 2019
STATUS
approved