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.

A139219 Primes of the form 41+(n+n^2)/2=41+A000217(n).

Original entry on oeis.org

41, 47, 107, 251, 317, 419, 569, 821, 1031, 1217, 1367, 1637, 1811, 1871, 3527, 5501, 5927, 6257, 6827, 8297, 8819, 9221, 10337, 14747, 17807, 20747, 21569, 22619, 25919, 28961, 31667, 34757, 37991, 43997, 45191, 48869, 49811, 52691, 63587
Offset: 1

Views

Author

Zak Seidov, Apr 11 2008

Keywords

Comments

Corresponding values of n in A139220.

Crossrefs

Programs

  • Magma
    [a: n in [0..500] | IsPrime(a) where a is  41 +(n + n^2) div 2]; // Vincenzo Librandi, Mar 22 2013
  • Mathematica
    Select[Table[41+(n+n^2)/2,{n,0,800}],PrimeQ]