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.

A099609 Naive list of twin primes (A077800 prefixed by 2, 3).

Original entry on oeis.org

2, 3, 3, 5, 5, 7, 11, 13, 17, 19, 29, 31, 41, 43, 59, 61, 71, 73, 101, 103, 107, 109, 137, 139, 149, 151, 179, 181, 191, 193, 197, 199, 227, 229, 239, 241, 269, 271, 281, 283, 311, 313, 347, 349, 419, 421, 431, 433, 461, 463, 521, 523, 569, 571, 599, 601, 617, 619, 641
Offset: 1

Views

Author

N. J. A. Sloane, Nov 18 2004

Keywords

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 870.

Crossrefs

Cf. A070076, A077800. See A001097 for another version.

Programs

  • Mathematica
    Select[Partition[#, 2, 1] &@ Prime@ Range@ 120, First@ Differences@ # <= 2 &] // Flatten (* Michael De Vlieger, Mar 18 2017 *)