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.

A274932 Squares m = k^2 with the property that nextprime(k) is a substring of m.

Original entry on oeis.org

529, 729, 6889, 12769, 162409, 644809, 851929, 1261129, 47969476, 64048009, 317837584, 1600240009, 2822053129, 24421563076, 40001200009, 84290347584, 107667328129, 145381301521, 160002400009, 437766166321, 788815751409
Offset: 1

Views

Author

Harvey P. Dale and N. J. A. Sloane, Jul 13 2016

Keywords

Examples

			529 = 23^2, and nextprime(23) = 29 is a substring of 529, so 529 is a term.
		

Crossrefs

Suggested by A052074.

Programs

  • Mathematica
    Select[Range[2*10^6]^2,SequenceCount[IntegerDigits[#], IntegerDigits[ NextPrime[ Sqrt[ #]]]]>0&] (* The program uses the SequenceCount function from Mathematica version 10 *) (* Harvey P. Dale, Jul 13 2016 *)
    Select[Range[2*10^6], {} != StringPosition @@ ToString /@ {#^2, NextPrime@ #} &]^2 (* Giovanni Resta, Jul 15 2016 *)