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.

A262344 Centered 11-gonal (or hendecagonal) primes.

Original entry on oeis.org

67, 397, 727, 859, 1321, 2311, 3037, 3301, 4159, 8581, 10891, 12409, 19471, 28909, 47059, 51217, 63559, 64747, 78541, 79861, 95107, 100981, 108571, 119659, 134707, 139921, 156157, 177211, 195427, 203809, 221101, 257797, 264991, 284659, 287167, 294757, 307627, 315481
Offset: 1

Views

Author

Ilya Gutkovskiy, Nov 26 2015

Keywords

Comments

Primes of the form (11*k^2 - 11*k + 2)/2.

Crossrefs

Intersection of A069125 and A000040.

Programs

  • Maple
    select(isprime, [(11*k^2-11*k+2)/2$k=1..300])[];  # Alois P. Heinz, May 27 2022
  • PARI
    for(n=1, 1e3, if(isprime(k=(11*n^2-11*n+2)/2), print1(k,", "))) \\ Altug Alkan, Nov 26 2015

Extensions

a(15)=47059 inserted by Georg Fischer, May 27 2022