A003555 Sum_{i=1..(10^n - 1)/9} i, or ((10^n -1)/9)*((10^n -1)/9 +1)/2 (n-th term is the middle 2(n-1) digits of the (n+9)-th term for n > 1).
1, 66, 6216, 617716, 61732716, 6172882716, 617284382716, 61728399382716, 6172839549382716, 617283951049382716, 61728395066049382716, 6172839506216049382716, 617283950617716049382716, 61728395061732716049382716, 6172839506172882716049382716
Offset: 1
Links
- Index entries for linear recurrences with constant coefficients, signature (111,-1110,1000).
Programs
-
Mathematica
f[x_] := 1*((100^x-1)/9) + 7*(10^x-1)/9 Table[f[w], {w, 1, 20}]/18 (* Labos Elemer, Oct 28 2004 *)
-
PARI
Vec(x*(-1+45*x)/((x-1)*(100*x-1)*(10*x-1))+O(x^99)) \\ Charles R Greathouse IV, Jun 23 2020
Formula
G.f.: x*(-1+45*x) / ( (x-1)*(100*x-1)*(10*x-1) ). - R. J. Mathar, Mar 10 2011
Extensions
Edited by N. J. A. Sloane at the suggestion of Andrew S. Plewe, May 31 2007
Comments