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.

A003067 Problimes (second definition).

Original entry on oeis.org

2, 4, 7, 10, 13, 17, 21, 25, 29, 34, 39, 44, 49, 54, 59, 64, 69, 74, 79, 84, 90, 96, 102, 108, 114, 120, 126, 132, 138, 144, 150, 156, 162, 168, 174, 180, 186, 192, 198, 204, 210, 216, 222, 228, 235, 242, 249, 256, 263, 270, 277, 284, 291, 298, 305, 312, 319
Offset: 1

Views

Author

Keywords

Comments

It would be nice to have a clearer definition. - N. J. A. Sloane, Jul 21 2008
The g.f. (z**2+2+z**9+z**5)/(z-1)**2 conjectured by Simon Plouffe in his 1992 dissertation is wrong.

References

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

Crossrefs

Programs

  • Maple
    a[1] := 2: for i from 1 to 150 do a[i+1] := round(a[i]+1/product((1-1/a[j]), j=1..i)): od: # James Sellers, Mar 07 2000
  • Mathematica
    a[1] = 2; a[n_] := a[n] = Round[a[n-1] + 1/Product[1-1/a[j], {j, 1, n-1}]]; Table[a[n], {n, 1, 60}] (* Jean-François Alcover, Mar 09 2012, after James Sellers *)

Extensions

More terms from James Sellers, Mar 07 2000