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.

Showing 1-3 of 3 results.

A217471 Partial sum of fifth power of the even-indexed Fibonacci numbers.

Original entry on oeis.org

0, 1, 244, 33012, 4117113, 507401488, 62424765712, 7678070811369, 944346243245076, 116147016764564500, 14285140634333292625, 1756956185432949082176, 216091326285380812359744, 26577476188001703626949937
Offset: 0

Views

Author

Wolfdieter Lang, Oct 11 2012

Keywords

Comments

For the o.g.f. for general powers of Fibonacci numbers F=A000045 see A056588 (row polynomials as numerators) and A055870 (row polynomials as denominator). The even part of the bisection leads to the o.g.f. for powers of F(2*n), and the partial sums of these powers are then given by dividing this o.g.f. by (1-x). For the o.g.f.s for F(n)^5 and F(2*n)^5 see A056572 and A215044, respectively.
The tables of the coefficient of the polynomials which appear in Ozeki's formula and in Melham's conjecture are found in A217472 and A217475, respectively (see References).

Examples

			a(2) = 244 = 2*(8-3)/5 - 610/20 + (832040-6765)/55^2 - 7/22.
a(2) = 244 = (1/11)*5^5 - (15/44)*5^3 + (25/44)*5 - 7/22.
a(2) = 244 = (5-1)^2*(4*5^3 + 8*5^2 - 3*5 - 14)/44
           = (4*5^3 + 8*5^2 - 3*5 - 14)*(4/11).
		

Crossrefs

Cf. A163198 (third powers).

Programs

  • Mathematica
    Table[Sum[Fibonacci[2*k]^5, {k, 0, n}], {n, 0, 50}] (* G. C. Greubel, Apr 12 2017 *)
    Accumulate[Fibonacci[Range[0,30,2]]^5] (* Harvey P. Dale, Jun 30 2025 *)
  • PARI
    a(n) = sum(k=1, n, fibonacci(2*k)^5); \\ Michel Marcus, Feb 29 2016

Formula

a(n) = Sum_{k=0..n} F(2*k)^5, n>=0.
O.g.f.: x*(1+99*x+416*x^2+99*x^3+x^4)/((1-3*x+x^2)*(1-18*x+x^2)*(1-123*x+x^2)*(1-x)).
a(n) = 2*(F(2*(n+1)) - F(2*n))/5 - F(3*(2*n+1))/20 +
(F(10*(n+1)) - F(10*n))/F(10)^2 - 7/22 (from the partial fraction decomposition of the o.g.f.).
a(n) = (1/11)*F(2*n+1)^5 - (15/44)*F(2*n+1)^3 + (25/44)*F(2*n+1) - 7/22 (from Ozeki reference, Theorem 2, p. 109 --- with a misprint -- and from Prodinger reference, p. 207).
a(n) =(F(2*n+1)-1)^2*(4*F(2*n+1)^3 + 8*F(2*n+1)^2 - 3*F(2*n+1) - 14)/44 (an example for Melham's conjecture, see the reference, eq. (2.7) for m=2).

A215043 a(n) = F(12*n)/(24*L(2*n)), n >= 0, with F = A000045 (Fibonacci) and L = A000032 (Lucas).

Original entry on oeis.org

0, 2, 276, 34561, 4261992, 524393210, 64499742738, 7933009283134, 975696814205904, 120002796170968643, 14759368609635548580, 1815282342961539780022, 223264968937188026209956, 27459775899111901985784506
Offset: 0

Views

Author

Wolfdieter Lang, Aug 31 2012

Keywords

Comments

24*a(n) is the third example for the Riordan transition matrix introduced in a comment on A078812 (with offset [0,0]). Take there l -> n, n -> 2. See the second formula below.

Crossrefs

Cf. A215042 (for F(8*n)/L(2*n)).

Programs

  • Magma
    [Fibonacci(12*n)/(24*Lucas(2*n)): n in [0..15]]; // Vincenzo Librandi, Sep 02 2012
    
  • Mathematica
    Table[Fibonacci[12*n]/(24*LucasL[2*n]), {n,0,15}] (* G. C. Greubel, Jun 30 2019 *)
  • PARI
    lucas(n) = fibonacci(n+1) + fibonacci(n-1);
    vector(15, n, n--; fibonacci(12*n)/(24*lucas(2*n))) \\ G. C. Greubel, Jun 30 2019
    
  • Sage
    [fibonacci(12*n)/(24*lucas_number2(2*n,1,-1)) for n in (0..15)] # G. C. Greubel, Jun 30 2019

Formula

a(n) = F(12*n)/(24*L(2*n)), n >= 0, with F = A000045 (Fibonacci) and L = A000032 (Lucas).
a(n) = 3*F(2*n) + 20*F(2*n)^3 + 25*F(2*n)^5, n >= 0 (see the comment above).
O.g.f.: x*(2 - 12*x + 97*x^2 - 12*x^3 + 2*x^4)/((1 - 3*x + x^2)*(1 - 18*x + x^2)*(1 - 123*x + x^2)). From the o.g.f.s for the sequences appearing in the preceding formula, see A001906, A215039 and A215044.
a(n) = (L(8*n) + 1)*F(2*n)/24. - Ehren Metcalfe, Jun 04 2019

A215045 a(n) = F(2*n+1)^5 with n >= 0, F=A000045 (Fibonacci numbers).

Original entry on oeis.org

1, 32, 3125, 371293, 45435424, 5584059449, 686719856393, 84459630100000, 10387823949447757, 1277617458486664901, 157136551895768914976, 19326518128014212635057, 2377004590722802744140625, 292352238096435536675521568
Offset: 0

Views

Author

Wolfdieter Lang, Aug 31 2012

Keywords

Crossrefs

Cf. A000045, A056572, A215044 (even part).

Programs

Formula

O.g.f.: (1-x)*(1-111*x+1046*x^2-111*x^3+x^4)/((1-3*x+x^2)*(1-18*x+x^2)*(1-123*x+x^2)). From the odd part of the bisection of A056572.
Showing 1-3 of 3 results.