A138144 Palindromes formed from the reflected decimal expansion of the concatenation of 1, 1 and infinite 0's.
1, 11, 111, 1111, 11011, 110011, 1100011, 11000011, 110000011, 1100000011, 11000000011, 110000000011, 1100000000011, 11000000000011, 110000000000011, 1100000000000011, 11000000000000011, 110000000000000011
Offset: 1
Examples
n .... a(n) 1 .... 1 2 .... 11 3 .... 111 4 .... 1111 5 .... 11011 6 .... 110011 7 .... 1100011 8 .... 11000011 9 .... 110000011 10 ... 1100000011
Links
- Index entries for linear recurrences with constant coefficients, signature (11,-10).
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{11,-10},{1,11,111,1111,11011},20] (* Harvey P. Dale, Aug 21 2016 *)
-
PARI
Vec(-x*(10*x^2-1)*(10*x^2+1)/((x-1)*(10*x-1)) + O(x^100)) \\ Colin Barker, Sep 15 2013
Formula
a(n) = 11+11*10^(n-2) for n>3. a(n) = 11*a(n-1)-10*a(n-2). G.f.: -x*(10*x^2-1)*(10*x^2+1) / ((x-1)*(10*x-1)). - Colin Barker, Sep 15 2013
Extensions
Better definition. - Omar E. Pol, Nov 15 2008
Comments