A152577 a(n) = 10^(2*n - 1) + 1.
11, 1001, 100001, 10000001, 1000000001, 100000000001, 10000000000001, 1000000000000001, 100000000000000001, 10000000000000000001, 1000000000000000000001, 100000000000000000000001
Offset: 1
Examples
From _Omar E. Pol_, Dec 14 2008: (Start) n ....... a(n) 1 ....... 11 2 ...... 1001 3 ..... 100001 4 .... 10000001 5 ... 1000000001 (End)
Links
- Index entries for linear recurrences with constant coefficients, signature (101,-100).
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{101,-100},{11,1001},20] (* Harvey P. Dale, Nov 05 2015 *)
-
PARI
g(n)=forstep(x=1,n,2,y=(10^x+1);print1(y","))
Formula
a(n) = 100*a(n-1) - 99 (with a(1)=11). - Vincenzo Librandi, Dec 14 2010
G.f.: -11*x*(-1+10*x) / ( (100*x-1)*(x-1) ). - R. J. Mathar, Sep 01 2011
a(n) = 11*A095372(n-1). - R. J. Mathar, Sep 01 2011
a(n) = 101*a(n-1)-100*a(n-2). - Wesley Ivan Hurt, Apr 24 2021
E.g.f.: (exp(100*x) + 10*exp(x) - 11)/10. - Stefano Spezia, Mar 13 2025
Comments