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.

A130289 Record values in A130280: minima of { m>1 | (2n+1)^2(m^2-1)+1 is a square} bigger than for all preceding n.

Original entry on oeis.org

3, 5, 7, 11, 13, 19, 21, 29, 31, 169, 419, 461, 3269, 7127, 3877019, 22783559, 215308729
Offset: 1

Views

Author

M. F. Hasler, May 24 2007

Keywords

Comments

Most elements of this sequence seem to be 1,2 or 4 times a prime.

Crossrefs

Programs

  • PARI
    A130289( L=999, S=1 )={ local( R, T ); for( n=S, L, if( issquare(n) || R >= T = A130280(n), next ); print1( T ", " ); R=T )}