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!)
A225885 Square numbers that remain square when their most-significant (or leftmost) digit is removed. 10

%I #39 Feb 13 2018 19:20:12

%S 1,4,9,49,64,81,100,225,400,625,900,1225,2025,3025,4225,4900,5625,

%T 6400,7225,8100,9025,10000,15625,22500,27225,30625,34225,40000,42025,

%U 50625,60025,62500,70225,75625,81225,90000,93025,105625,122500,202500,275625,302500,330625

%N Square numbers that remain square when their most-significant (or leftmost) digit is removed.

%C The first three are the only terms not divisible by 25 (and thus, not ending in 00 or 25). If 100 is a term, then the sequence should start with 3 more initial terms, namely (1, 4, 9, ...) - _M. F. Hasler_, Nov 01 2014

%H Chai Wah Wu, <a href="/A225885/b225885.txt">Table of n, a(n) for n = 1..3000</a> (n = 4..403 from Christian N. K. Anderson and Kevin L. Schwartz)

%e 225 = 15^2 becomes 25 = 5^2, 105625 = 325^2 becomes 5625 = 75^2.

%t b^2 /. Flatten[Outer[Solve[a^2 + #2*10^#1 == b^2 && 0 <= a < Sqrt[10^#1] && Sqrt[#2*10^#1] <= b < Sqrt[10^(#1 + 1)], {a, b}, Integers] &, Range[0, 5], Range[9]], 2] (* _Davin Park_, Dec 30 2016 *)

%o (R)

%o no0<-function(s){ while(substr(s,1,1)=="0" & nchar(s)>1) s=substr(s,2,nchar(s)); s};

%o issquare<-function(x) ifelse(as.bigz(x)<2,T,all(table(as.numeric(gmp::factorize(x)))%%2==0));

%o which(sapply(1:200,function(x) issquare(no0(substr(x^2,2,ndig(x^2)))))>0)^2

%o (PARI) is_A225885(n)=issquare(n%10^(#Str(n)-1))&&issquare(n)&&n>9 \\ _M. F. Hasler_, Nov 01 2014

%Y Cf. A225873, A249587, A247267.

%K nonn,base

%O 1,2

%A _Kevin L. Schwartz_ and _Christian N. K. Anderson_, May 19 2013

%E 1,4,9 added (per _M. F. Hasler_'s comment) by _Chai Wah Wu_, Nov 03 2014

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 August 20 18:39 EDT 2024. Contains 375338 sequences. (Running on oeis4.)