OFFSET
0,4
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).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..107
Mohammad K. Azarian, Fibonacci Identities as Binomial Sums, International Journal of Contemporary Mathematical Sciences, Vol. 7, No. 38, 2012, pp. 1871-1876. Mathematical Reviews, MR2959001. Zentralblatt MATH, Zbl 1255.05003.
Mohammad K. Azarian, Fibonacci Identities as Binomial Sums II, International Journal of Contemporary Mathematical Sciences, Vol. 7, No. 42, 2012, pp. 2053-2059. Mathematical Reviews, MR2980853. Zentralblatt MATH, Zbl 1255.05004.
A. Brousseau, A sequence of power formulas, Fib. Quart., 6 (1968), 81-83.
J. Riordan, Generating functions for powers of Fibonacci numbers, Duke. Math. J. 29 (1962) 5-12.
Index entries for linear recurrences with constant coefficients, signature (34,714,-4641,-12376,12376,4641,-714,-34,1).
FORMULA
a(n) = F(n)^8, F(n)=A000045(n).
G.f.: x*p(8, x)/q(8, x) with p(8, x) := sum_{m=0..7} A056588(7, m)*x^m = (1+x)*(1 - 34*x - 458*x^2 + 2242*x^3 - 458*x^4 - 34*x^5 + x^6) and q(8, x) := sum_{m=0..9} A055870(9, m)*x^m = (1-x)*(1 + 3*x + x^2)*(1 - 7*x + x^2)*(1 + 18*x + x^2)*(1 - 47*x + x^2) (denominator factorization deduced from Riordan result).
Recursion (cf. Knuth's exercise): sum_{m=0..9} A055870(9, m)*a(n-m) = 0, n >= 9; inputs: a(n), n=0..8. a(n) = 34*a(n-1) + 714*a(n-2) - 4641*a(n-3) - 12376*a(n-4) + 12376*a(n-5) + 4641*a(n-6) - 714*a(n-7) - 34*a(n-8) + a(n-9).
a(n+1) = 8*F(n)^2*F(n+1)^2*[F(n)^4+F(n+1)^4+4*F(n)^2*F(n+1)^2+3*F(n)*F(n+1)*F(n+2)]-[F(n)^8+F(n+2)^8]+2*[2*F(n+1)^2-(-1)^n]^4 = {Sum(0 <= j <= [n/2]; binomial(n-j, j))}^8, for n>=0 (This is Theorem 2.2 (vii) of Azarian's second paper in the references for this sequence). - Mohammad K. Azarian, Jun 29 2015
MATHEMATICA
lst={}; Do[f=Fibonacci[n]; AppendTo[lst, f^8], {n, 0, 4!}]; lst (* Vladimir Joseph Stephan Orlovsky, Sep 27 2008 *)
Fibonacci[Range[0, 20]]^8 (* Harvey P. Dale, Jul 03 2017 *)
PROG
(Magma) [Fibonacci(n)^8: n in [0..20]]; // Vincenzo Librandi, Jun 04 2011
(PARI) a(n)=fibonacci(n)^8 \\ Charles R Greathouse IV, Jun 30 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jul 10 2000
STATUS
approved