cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A056572 Fifth power of Fibonacci numbers A000045.

Original entry on oeis.org

0, 1, 1, 32, 243, 3125, 32768, 371293, 4084101, 45435424, 503284375, 5584059449, 61917364224, 686719856393, 7615646045657, 84459630100000, 936668172433707, 10387823949447757, 115202670521319424, 1277617458486664901
Offset: 0

Views

Author

Wolfdieter Lang, Jul 10 2000

Keywords

Comments

Divisibility sequence; that is, if n divides m, then a(n) divides a(m).

References

  • D. E. Knuth, The Art of Computer Programming. Addison-Wesley, Reading, MA, 1969, Vol. 1, p. 85, (exercise 1.2.8. Nr. 30) and p. 492 (solution).

Crossrefs

Fifth row of array A103323.

Programs

Formula

a(n) = F(n)^5, F(n)=A000045(n).
G.f.: x*p(5, x)/q(5, x) with p(5, x) := sum(A056588(4, m)*x^m, m=0..4)= 1-7*x-16*x^2+7*x^3+x^4 and q(5, x) := sum(A055870(6, m)*x^m, m=0..6)= 1-8*x-40*x^2+60*x^3+40*x^4-8*x^5-x^6 = (1-x-x^2)*(1+4*x-x^2)*(1-11*x-x^2) (factorization deduced from Riordan result).
Recursion (cf. Knuth's exercise): sum(A055870(6, m)*a(n-m), m=0..6) = 0, n >= 6; inputs: a(n), n=0..5. a(n) = +8*a(n-1) +40*a(n-2) -60*a(n-3) -40*a(n-4) +8*a(n-5) +a(n-6).
a(n) = (10*F(n) + 5*(-1)^(n+1)*F(3*n) + F(5*n))/25, n >= 0. See the general comment on A111418 regarding the Ozeki reference; here the row 10, 5, 1 of that triangle applies. - Wolfdieter Lang, Aug 25 2012
a(n) = (F(n)^2*(F(3*n)-(-1)^n*3*F(n)))/5. - Gary Detlefs, Jan 07 2013
a(n) = F(n-2)*F(n-1)*F(n)*F(n+1)*F(n+2) + F(n). - Tony Foster III, Apr 11 2018