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.

A364079 Numbers k such that (18^k + 1)^2 - 2 is prime.

Original entry on oeis.org

1, 10, 21, 25, 31, 1083, 40485, 82516
Offset: 1

Views

Author

Jeppe Stig Nielsen, Jul 03 2023

Keywords

Comments

Such primes are sometimes called Kynea primes of base 18.

Crossrefs

Cf. A091513 (b=2), A100902 (b=6), A100904 (b=10), A364077 (b=12), A100906 (b=14), A364081 (b=20), A100908 (b=22).
Cf. A364078.

Programs

  • PARI
    for(k=1,1200,ispseudoprime((18^k+1)^2-2)&&print1(k,", "))