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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A136173 Column 2 of triangle A136170. 3
1, 3, 25, 480, 20657, 1906051, 378639419, 163267272113, 155845755656250, 335843460383424796, 1664976879959626195703, 19289660262281670383124691, 529079225669745804554669074826, 34719352972951195290492954195861372 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
PROG
(PARI) /* Generate using matrix power method: */ a(n)=local(A=Mat(1), B); for(m=1, n+3, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i, j]=1, B[i, j]=(A^(fibonacci(i-1)))[i-1, j]); )); A=B); return( ((A)[n+3, 3]))
(PARI) /* Generate using partial sums method: */ a(n)=local(A=vector(n+1), p); A[1]=1; for(j=1, n, p=fibonacci(n+4)-fibonacci(n-j+4)-j; A=Vec((Polrev(A)+x*O(x^p))/(1-x))); A[ #A]
CROSSREFS
Sequence in context: A336804 A272482 A356404 * A243440 A306783 A003024
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 17 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 December 5 10:56 EST 2023. Contains 367589 sequences. (Running on oeis4.)