A094026 Expansion of x(1+10x)/((1-x^2)(1-10x^2)).
0, 1, 10, 11, 110, 111, 1110, 1111, 11110, 11111, 111110, 111111, 1111110, 1111111, 11111110, 11111111, 111111110, 111111111, 1111111110, 1111111111, 11111111110, 11111111111, 111111111110, 111111111111, 1111111111110
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..300
- Index entries for linear recurrences with constant coefficients, signature (0,11,0,-10).
Programs
-
Magma
I:=[0,1,10,11]; [n le 4 select I[n] else 11*Self(n-2)-10*Self(n-4): n in [1..30]]; // Vincenzo Librandi, Apr 25 2019
-
Mathematica
LinearRecurrence[{0, 11, 0, -10}, {0, 1, 10, 11}, 30] (* Vincenzo Librandi, Apr 25 2019 *) CoefficientList[Series[x (1+10x)/((1-x^2)(1-10x^2)),{x,0,30}],x] (* Harvey P. Dale, Jul 07 2024 *)
Formula
a(n) = 10^(n/2)(5/9+sqrt(10)/18+(5/9-sqrt(10)/18)(-1)^n)-(-1)^n/2-11/18.
Comments