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.

A285811 Primes equal to a centered heptagonal number plus 1.

Original entry on oeis.org

2, 23, 107, 149, 317, 1619, 2459, 3257, 3929, 5189, 6029, 6323, 7247, 15017, 19427, 21023, 21569, 26189, 42737, 45887, 55127, 56009, 63317, 66173, 67139, 70079, 82469, 101747, 105359, 110273, 125687, 136523, 137909, 149249, 155087, 159539, 167099, 171719
Offset: 1

Views

Author

Colin Barker, Apr 27 2017

Keywords

Comments

Primes in A209294. - Omar E. Pol, Apr 27 2017

Crossrefs

Programs

  • PARI
    cpg(m, n) = m*n*(n-1)/2+1 \\ n-th centered m-gonal number
    maxk=600; L=List(); for(k=1, maxk, if(isprime(p=cpg(7, k) + 1), listput(L, p))); Vec(L)
Showing 1-1 of 1 results.