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.

A056574 Seventh power of Fibonacci numbers A000045.

Original entry on oeis.org

0, 1, 1, 128, 2187, 78125, 2097152, 62748517, 1801088541, 52523350144, 1522435234375, 44231334895529, 1283918464548864, 37281334283719577, 1082404156823183753, 31427428360210000000, 912473096871571914483
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

Seventh row of array A103323.

Programs

Formula

a(n) = F(n)^7, where F(n) = A000045(n).
G.f.: x*p(7, x)/q(7, x) with p(7, x) := sum_{m=0..6} A056588(6, m)*x^m = 1 - 20*x - 166*x^2 + 318*x^3 + 166*x^4 - 20*x^5 - x^6 and q(7, x) := sum_{m=0..8} A055870(8, m)*x^m = (1 + x - x^2)*(1 - 4*x - x^2)*(1 + 11*x - x^2)*(1 - 29*x - x^2) (factorization deduced from Riordan result).
Recursion (cf. Knuth's exercise): sum_{m=0..8} A055870(8, m)*a(n-m) = 0, n >= 8; inputs: a(n), n=0..7. a(n) = 21*a(n-1) + 273*a(n-2) - 1092*a(n-3) - 1820*a(n-4) + 1092*a(n-5) + 273*a(n-6) - 21*a(n-7) - a(n-8).
a(n+1) = F(n)^7+F(n+1)^7+7*F(n)*F(n+1)*F(n+2)*[2*F(n+1)^2-(-1)^n]^2 = {Sum(0 <= j <= [n/2]; binomial(n-j, j))}^7, for n>=0 (This is Theorem 2.3 (iv) of Azarian's second paper in the references for this sequence). - Mohammad K. Azarian, Jun 29 2015