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.

A360652 Primes of the form x^2 + 432*y^2.

Original entry on oeis.org

433, 457, 601, 1657, 1753, 1777, 1801, 2017, 2089, 2113, 2281, 2689, 2833, 2953, 3457, 3889, 4057, 4129, 4153, 4177, 4513, 4657, 4729, 5113, 5209, 5449, 5569, 5737, 5953, 6217, 6361, 6673, 6961, 7057, 7321, 7369, 7537, 7753, 7873, 8353, 8377, 8713, 8761, 8929
Offset: 1

Views

Author

Arkadiusz Wesolowski, Feb 15 2023

Keywords

Comments

Supersequence of A351332. Thus every prime congruent to 1 mod 3 that divides a Fermat number is in this sequence.
Every Fermat number that is a semiprime has a prime of this form as a factor.

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(8929) | NormEquation(432, p) eq true];
    
  • PARI
    select(p->my(m=Mod(2, p)^(p\12)); p>11 && (m==1||m==p-1), primes(1110))