The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A239589 Numbers whose squares are cyclops numbers. 7
0, 105, 138, 145, 155, 179, 195, 205, 217, 226, 241, 243, 255, 257, 259, 274, 295, 305, 1054, 1068, 1082, 1091, 1114, 1127, 1136, 1158, 1162, 1175, 1192, 1196, 1221, 1229, 1233, 1237, 1261, 1269, 1273, 1277, 1281, 1308, 1323, 1327, 1338, 1364, 1375, 1386 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
138 is in the sequence because 138^2 = 19044, which is a cyclops number.
PROG
(PARI)
is_cyclops(k) = {
if(k==0, return(1));
my(d=digits(k), j);
if(#d%2==0 || d[#d\2+1]!=0, return(0));
for(j=1, #d\2, if(d[j]==0, return(0)));
for(j=#d\2+2, #d, if(d[j]==0, return(0)));
return(1)}
s=[]; for(n=0, 2000, if(is_cyclops(n^2), s=concat(s, n))); s
CROSSREFS
Sequence in context: A097217 A115935 A069702 * A203614 A252069 A133509
KEYWORD
nonn,base
AUTHOR
Colin Barker, Mar 24 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 1 04:51 EDT 2024. Contains 373010 sequences. (Running on oeis4.)