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.

A262493 Centered 13-gonal (or tridecagonal) primes.

Original entry on oeis.org

79, 131, 859, 2731, 5279, 6449, 8191, 10141, 15289, 17239, 20021, 20749, 23011, 26209, 38039, 41081, 45319, 46411, 50909, 54419, 59281, 65651, 70981, 76519, 80809, 86711, 92821, 99139, 126491, 128311, 135721, 159199, 167441, 175891, 200201, 209431, 221261, 230959
Offset: 1

Views

Author

Ilya Gutkovskiy, Nov 26 2015

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[Table[(13k^2-13k+2)/2,{k,200}],PrimeQ] (* Harvey P. Dale, Jun 16 2023 *)
  • PARI
    for(n=1, 1e3, if(isprime(k=(13*n^2-13*n+2)/2), print1(k,", "))) \\ Altug Alkan, Nov 26 2015