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

A309027 Prime powers of the form 12*c^2 + 4*c + 3, where c is an arbitrary integer.

Original entry on oeis.org

3, 11, 19, 43, 59, 179, 211, 283, 563, 619, 739, 1163, 1499, 1979, 2083, 2411, 3011, 3539, 4259, 4723, 7603, 8011, 8219, 10211, 11411, 12163, 14011, 14563, 14843, 17483, 20011, 23059, 25579, 26699, 28619, 29803, 30203, 33923, 36083, 36523, 41539, 49411, 54139, 55219, 55763, 59083
Offset: 1

Views

Author

Michel Marcus, Jul 08 2019

Keywords

Comments

It is conjectured that all terms are prime. See Leung et al. p. 12.
All terms up to 10^9 are prime.
Since the Diophantine equation 12*c^2 + 4*c + 3 = x^2 has no solution, all terms p^e have either e=1 or e>=3 and odd. Up to 10^24, all terms are prime. - Giovanni Resta, Jul 08 2019
It appears that these are the primes of A271723. - Bill McEachen, Aug 14 2021

Crossrefs

Cf. A271723.

Programs

  • PARI
    isok(n) = isprimepower(n) && issquare(3*n-8) && (d=sqrtint(3*n-8)) && ((frac((d-1)/6) == 0) || (frac((d+1)/6) == 0));
Showing 1-1 of 1 results.