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.

A005347 First differences of A005579.

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 5, 8, 13, 20, 34, 53, 88, 143, 236, 387, 641, 1061, 1763, 2937, 4903, 8202, 13750, 23095, 38850, 65461, 110465, 186665, 315827, 535011, 907341, 1540416, 2617782, 4452846, 7581016, 12917486, 22027745, 37591270, 64196610
Offset: 0

Views

Author

N. J. A. Sloane, R. K. Guy, Apr 12 1988

Keywords

Comments

This is example 42 in Guy's paper. a(2)-a(8) are the same as the Fibonacci sequence A000045. Subsequent terms deviate from Fibonacci. - T. D. Noe, May 08 2006

References

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

Crossrefs

Programs

  • Mathematica
    prod = Interval[1]; k = k0 = 0; Join[{1, 1}, Table[While[Max[prod] <= n, k++; p = Prime[k]; prod = N[prod*p/(p - 1), 30]]; If[Min[prod] > n, If[k > 2, Print[k - k0] ]; k0 = k; k, "too few digits"], {n, 2, 39}] // Differences] (* Jean-François Alcover, Oct 07 2016, using T. D. Noe's code for A005579 *)

Formula

a(n) = A005579(n+1) - A005579(n) - T. D. Noe, May 08 2006

Extensions

More terms from Harvey P. Dale, Aug 07 2013
Offset changed to 0, a(0) prepended, and a(1) inserted by Amiram Eldar, Apr 18 2025