Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A130407
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A130407 A diagonal of triangle A130405. +0
3
1, 3, 9, 37, 233, 2254, 34342, 827262, 31730508, 1943441460, 190609515540, 29988517246560, 7579307667005280, 3080578207713982560, 2015291663362285214400, 2123462159890867147060800 (list; graph; listen)
OFFSET

0,2

FORMULA

a(n) = F(n+1)*a(n-1) + F(n+2)*A003266(n), where A003266(n) is the product of the first n nonzero Fibonacci numbers (A000045) and F(n) = A000045(n).

a(n) = A003266(n)*[ F(n+2) + F(n+1)*Sum_{k=0..n} F(k+1)/F(k) ] where F(n)=A000045(n) is the n-th Fibonacci number.

EXAMPLE

a(n) = A003266(n)*[F(n+2) + F(n+1)*[1+ 2/1+ 3/2+ 5/3+...+ F(n+1)/F(n)]]:

a(3) = 1*1*2*( 5 + 3*(1/1 + 2/1 + 3/2) ) = 37;

a(4) = 1*1*2*3*( 8 + 5*(1/1 + 2/1 + 3/2 + 5/3) ) = 233;

a(5) = 1*1*2*3*5*( 13 + 8*(1/1 + 2/1 + 3/2 + 5/3 + 8/5) ) = 2254.

PROGRAM

(PARI) {a(n)=polcoeff(prod(i=0, n+1, fibonacci(i+1)+x*fibonacci(i)), n)} (PARI) /* Recurrence a(n) = F(n+1)*a(n-1) + F(n+2)*A003266(n): */ {a(n)=if(n==0, 1, fibonacci(n+1)*a(n-1)+fibonacci(n+2)*prod(i=1, n, fibonacci(i)))}

(PARI) {a(n)=prod(i=1, n, fibonacci(i))*(fibonacci(n+2) + fibonacci(n+1)*sum(k=1, n, fibonacci(k+1)/fibonacci(k)) )}

CROSSREFS

Cf. A130405, A130406; A003266, A000045.

Sequence in context: A030943 A030803 A107886 this_sequence A137031 A047148 A149023

Adjacent sequences: A130404 A130405 A130406 this_sequence A130408 A130409 A130410

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), May 24 2007, May 25 2007

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 2 15:58 EST 2008. Contains 150992 sequences.


AT&T Labs Research