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.

A056573 Sixth power of Fibonacci numbers A000045.

Original entry on oeis.org

0, 1, 1, 64, 729, 15625, 262144, 4826809, 85766121, 1544804416, 27680640625, 496981290961, 8916100448256, 160005726539569, 2871098559212689, 51520374361000000, 924491486192068809, 16589354847268067929
Offset: 0

Views

Author

Wolfdieter Lang, Jul 10 2000

Keywords

Comments

A 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

Sixth row of array A103323.

Programs

Formula

a(n) = F(n)^6, where F(n) = A000045(n).
G.f.: x*p(6, x)/q(6, x) with p(6, x) := sum_{m=0..5} A056588(5, m)*x^m = (1-x)*(1 - 11*x - 64*x^2 - 11*x^3 + x^4) and q(6, x) := sum_{m=0..7} A055870(7, m)*x^m = (1+x)*(1 - 3*x + x^2)*(1 + 7*x + x^2)*(1 - 18*x + x^2) (denominator factorization deduced from Riordan result).
Recursion (cf. Knuth's exercise): sum_{m=0..7} A055870(7, m)*a(n-m) = 0, n >= 7; inputs: a(n), n=0..6. a(n) = 13*a(n-1) + 104*a(n-2) - 260*a(n-3) - 260*a(n-4) + 104*a(n-5) + 13*a(n-6) - a(n-7).
From Gary Detlefs, Jan 07 2013: (Start)
a(n) = (F(3*n)^2 - (-1)^n*6*F(n)*F(3*n) + 9*F(n)^2)/25.
a(n) = (10*F(n)^3*F(3*n) - F(3*n)^2 + 9*F(n)^2)/25. (End)
a(n+1) = 2*[2*F(n+1)^2-(-1)^n]^3+3*F(n)^2*F(n+1)^2*F(n+2)^2-[F(n)^6+F(n+2)^6] = {Sum(0 <= j <= [n/2]; binomial(n-j, j))}^6, for n (this is Theorem 2.2 (vi) of Azarian's second paper in the references for this sequence). - Mohammad K. Azarian, Jun 29 2015