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.

A129446 Primes p such that p^2 is a centered triangular number; or primes in A129445.

Original entry on oeis.org

2, 19, 79, 1861, 7741, 1647522841025041
Offset: 1

Views

Author

Alexander Adamchuk, Apr 15 2007, Apr 26 2007

Keywords

Comments

The next terms are too large to include, see the b-file.

Crossrefs

Cf. A005448 (centered triangular numbers).
Cf. A129444 (numbers k such that centered triangular number A005448(k) = 3*k*(k-1)/2 + 1 is a perfect square).
Cf. A129445 (numbers k > 0 such that k^2 is a centered triangular number).

Programs

  • Mathematica
    Do[ f = 3n(n-1)/2 + 1; If[ PrimeQ[ Sqrt[f] ], Print[ Sqrt[f] ] ], {n,1,150000} ]