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.

A005673 a(n) = F(n+2) - 2^[ (n+1)/2 ] - 2^[ n/2 ] + 1.

Original entry on oeis.org

0, 0, 0, 0, 1, 2, 6, 11, 24, 42, 81, 138, 250, 419, 732, 1214, 2073, 3414, 5742, 9411, 15664, 25586, 42273, 68882, 113202, 184131, 301428, 489654, 799273, 1297118, 2112774, 3426275, 5571816, 9030858, 14668209, 23764602, 38563882, 62459555, 101285580, 164007278
Offset: 0

Views

Author

Keywords

References

  • R. K. Guy, personal communication.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A000045.

Programs

  • Maple
    A005673:=-z**4/(z-1)/(z**2+z-1)/(-1+2*z**2); # Conjectured by Simon Plouffe in his 1992 dissertation.
  • Mathematica
    LinearRecurrence[{2,2,-5,0,2},{0,0,0,0,1},40] (* Harvey P. Dale, Apr 22 2024 *)

Formula

G.f.: x^4/((1-x)*(1-x-x^2)*(1-2x^2)); a(n) = 2*a(n-1)+2*a(n-2)-5*a(n-3)+2*a(n-5); a(n+1) = Sum_{k=0..n} (2^floor(k/2)-1)*F(n-k). - Paul Barry, Jul 28 2004