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-2 of 2 results.

A002643 Numbers k such that (k^2 + k + 1)/19 is prime.

Original entry on oeis.org

7, 11, 26, 45, 83, 125, 140, 182, 197, 201, 216, 239, 258, 311, 330, 353, 444, 467, 482, 486, 524, 539, 558, 600, 752, 771, 843, 881, 885, 923, 980, 999, 1071, 1113, 1170, 1223, 1337, 1356, 1470, 1664, 1835, 1869, 1911, 1949, 1968, 2021, 2078, 2120, 2192
Offset: 1

Views

Author

Keywords

References

  • A. J. C. Cunningham, Binomial Factorisations, Vols. 1-9, Hodgson, London, 1923-1929; see Vol. 1, pp. 245-259.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

Extensions

More terms from Jon E. Schoenfield, May 06 2010

A272629 Primes p such that (p^2 + p + 1)/13 is prime.

Original entry on oeis.org

29, 113, 419, 503, 659, 887, 1277, 1361, 1433, 2141, 2213, 2687, 3851, 4007, 4397, 4787, 5333, 5417, 5573, 7127, 7757, 7829, 8609, 8693, 8849, 9161, 9311, 9623, 10247, 10487, 11261, 11423, 12197, 12743, 13217, 13523, 14537, 14621, 14771, 15083, 15161
Offset: 1

Views

Author

Vincenzo Librandi, May 04 2016

Keywords

Comments

Primes in A002642.

Examples

			a(1) = 29 because (29^2+29+1)/13 = 67 is a prime.
		

Crossrefs

Cf. A002642.

Programs

  • Mathematica
    Select[Prime[Range[5000]], PrimeQ[(#^2 + # + 1) / 13] &]
  • PARI
    lista(nn) = {forprime(p=2, nn, if ((denominator(q=(p^2 + p + 1)/13)== 1) && isprime(q), print1(p, ", ")););} \\ Michel Marcus, May 05 2016
Showing 1-2 of 2 results.