A054216 Numbers m such that m^2 is a concatenation of two consecutive decreasing numbers.
91, 9079, 9901, 733674, 999001, 88225295, 99990001, 8900869208, 9296908812, 9604060397, 9999900001, 326666333267, 673333666734, 700730927008, 972603739727, 999999000001, 34519562953737, 39737862788838, 49917309624956
Offset: 1
Examples
'8242' + '8242-1' gives 82428241 which is 9079^2. Leading zeros are not allowed, which is why c(1)=266327 is not in this sequence although c(1)^2 = 070930 070929.
References
- Luca, Florian, and Pantelimon Stănică. "Perfect Squares as Concatenation of Consecutive Integers." The American Mathematical Monthly 126.8 (2019): 728-734.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..1000
Programs
-
PARI
isA054216(n)={ 1==[1,-1]*divrem(n^2,10^(#Str(n^2)\2)) & #Str(n^2)%2==0 }
Formula
a(n) = sqrt(A054215(n)). - Max Alekseyev, May 14 2007
Extensions
More terms from Max Alekseyev, May 14 2007
Several corrections and additions from M. F. Hasler, Oct 09 2008
Comments