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!)
A056566 Fibonomial coefficients. 3
1, 34, 1870, 83215, 3994320, 186135312, 8771626578, 411591708660, 19344810307020, 908637119420910, 42689423937884208, 2005443612183077232, 94214069697350815795, 4426039514623184676790, 207929935924379904006970 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A010048(n+8, 8) = Fibonomial(n+8, 8).
G.f.: 1/p(9, n) with p(9, n)= 1 - 34*x - 714*x^2 + 4641*x^3 + 12376*x^4 - 12376*x^5 - 4641*x^6 + 714*x^7 + 34*x^8 - x^9 = (1-x)*(1 + 3*x + x^2)*(1 - 7*x + x^2)* (1 + 18*x + x^2)*(1 - 47*x + x^2) (n=9 row polynomial of signed Fibonomial triangle A055870; see this entry for Knuth and Riordan references).
Recursion: a(n) = 47*a(n-1) - a(n-2) + ((-1)^n)*A001658(n), n >= 2, a(0)=1, a(1)=34.
MAPLE
with(combinat): a:=n-> 1/65520*fibonacci(n) *fibonacci(n+1) *fibonacci(n+2) *fibonacci(n+3) *fibonacci(n+4)*fibonacci(n+5)*fibonacci(n+6)*fibonacci(n+7): seq(a(n), n=1..17); # Zerinvary Lajos, Oct 07 2007
MATHEMATICA
a[n_] := (1/65520) Times @@ Fibonacci[n + Range[8]]; Array[a, 20, 0] (* Giovanni Resta, May 08 2016 *)
PROG
(PARI) b(n, k)=prod(j=1, k, fibonacci(n+j)/fibonacci(j));
vector(20, n, b(n-1, 8)) \\ Joerg Arndt, May 08 2016
CROSSREFS
Cf. A010048, A000045, A001654-8, A056565, A001906 (signed), A004187, A049660 (signed), A049668.
Sequence in context: A296673 A086881 A212023 * A335090 A242177 A187591
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jul 10 2000
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 27 07:46 EDT 2024. Contains 372009 sequences. (Running on oeis4.)