Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Mar 13 2019 18:52:16
%S 149,496481,361400441,202521162209,562557765929,624164006561,
%T 98011000010201,118811210012321,198812016420449,272252755627889,
%U 342253459634969,778417840078961,789617952480089,906019120491809
%N Primes which are the concatenation of three consecutive square numbers.
%H Harvey P. Dale, <a href="/A104262/b104262.txt">Table of n, a(n) for n = 1..1000</a>
%e The first term is 149 which is a prime and is the concatenation of 1,4 and 9 which are three consecutive square numbers.
%t 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 *)
%K base,nonn
%O 1,1
%A _Shyam Sunder Gupta_, Apr 17 2005