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.

A104262 Primes which are the concatenation of three consecutive square numbers.

Original entry on oeis.org

149, 496481, 361400441, 202521162209, 562557765929, 624164006561, 98011000010201, 118811210012321, 198812016420449, 272252755627889, 342253459634969, 778417840078961, 789617952480089, 906019120491809
Offset: 1

Views

Author

Shyam Sunder Gupta, Apr 17 2005

Keywords

Examples

			The first term is 149 which is a prime and is the concatenation of 1,4 and 9 which are three consecutive square numbers.
		

Programs

  • Mathematica
    c3sn[{a_,b_,c_}]:=FromDigits[Flatten[IntegerDigits/@{a,b,c}]]; Select[ c3sn/@ Partition[Range[400]^2,3,1],PrimeQ] (* Harvey P. Dale, Mar 13 2019 *)