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.

A256585 Primes of the form 3n^2 + 39n + 37.

Original entry on oeis.org

37, 79, 127, 181, 241, 307, 379, 457, 541, 631, 727, 829, 937, 1051, 1171, 1297, 1429, 1567, 1861, 2017, 2179, 2347, 2521, 2887, 3079, 3691, 3907, 4129, 4357, 4591, 4831, 5077, 5851, 6121, 6397, 6679, 6967, 7561, 7867, 8179, 8821, 9151, 9829, 10177, 10531
Offset: 1

Views

Author

S. J. Vincent, Apr 02 2015

Keywords

Comments

Primes of the form 6*m+1 such that 8*m + 121 is a square. - Bruno Berselli, Apr 18 2016

Crossrefs

Programs

  • Maple
    select(isprime, [3*k*(k+13)+37$k=0..100])[];  # Alois P. Heinz, Apr 16 2025
  • Mathematica
    Select[(3 #^2 + 39 # + 37) & /@ Range[0, 100], PrimeQ] (* Robert Price, Apr 16 2025 *)