login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135934 O.g.f.: A(x) = Sum_{n>=0} x^n / Product_{k=0..n} (1 - Fibonacci(k)*x). 2
1, 1, 2, 4, 9, 24, 77, 299, 1419, 8312, 60452, 547939, 6213566, 88468601, 1585646789, 35846274127, 1023893974778, 37005881297226, 1694206791508891, 98335493373334998, 7241161595237290969, 676871453643079089963, 80351261743964014059133, 12117563014768206457325416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
After the first term, row sums of triangle A111669. - Emanuele Munarini, Dec 05 2017
LINKS
FORMULA
G.f.: (1 - G(0) )/(1-x) where G(k) = 1 - 1/(1-Fibonacci(k)*x)/(1-x/(x-1/G(k+1) )); (continued fraction). - Sergei N. Gladkovskii, Jan 17 2013
G.f.: 1/(x*(1-x)*G(0)) - 1/x where G(k) = 1 - x/(x - 1/(1 + 1/(x*Fibonacci(k)-1)/G(k+1) )); (continued fraction). - Sergei N. Gladkovskii, Feb 13 2013
EXAMPLE
A(x) = 1 + x/(1-x) + x^2/((1-x)*(1-x)) + x^3/((1-x)*(1-x)*(1-2*x)) +
x^4/((1-x)*(1-x)*(1-2*x)(1-3*x)) + x^5/((1-x)*(1-x)*(1-2*x)*(1-3*x)*(1-5*x)) + x^6/((1-x)*(1-x)*(1-2*x)*(1-3*x)*(1-5*x)*(1-8*x)) +...
MAPLE
b:= proc(n, m) option remember; `if`(n=0, 1,
(<<0|1>, <1|1>>^m)[1, 2]*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n, 0):
seq(a(n), n=0..25); # Alois P. Heinz, Aug 08 2021
MATHEMATICA
b[n_, m_] := b[n, m] = If[n == 0, 1,
MatrixPower[{{0, 1}, {1, 1}}, m][[1, 2]]*b[n-1, m]+b[n-1, m+1]];
a[n_] := b[n, 0];
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Sep 07 2022, after Alois P. Heinz *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, x^k/prod(j=0, k, 1-fibonacci(j)*x+x*O(x^n))), n)}
CROSSREFS
Sequence in context: A000667 A131351 A091352 * A343032 A210342 A137154
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 07 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)