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!)
A174499 Smallest number whose square starts and ends with (at least) n identical digits. 1

%I #53 Aug 21 2021 22:35:01

%S 1,88,10538,235700,10541000,57735000,7453560000,14907120000,

%T 18257418600000,29814239700000,298142397000000,1490711985000000,

%U 14907119850000000,105409255338950000000,7453559924999300000000,10540925533894600000000

%N Smallest number whose square starts and ends with (at least) n identical digits.

%C For n > 3 the last n identical digits are zeros. Proof:

%C For n = 3, the numbers a(n) == {0, 38, 100, 200, 300, 400, 462, 500, 538, 600, 700, 800, 900, 962} mod 1000, but for n = 4, if the suffix is different from zero, a(n) == {38, 462, 538, 962} mod 1000, and for d from [1..9], (d038)^2 <> 4444 (mod 10000), (d462)^2 <> 4444 (mod 10000), (d538)^2 <> 4444 (mod 10000), (d962)^2 <> 4444 (mod 10000).

%C Differs from A346926 where exactly n identical digits are required. - _Bernard Schott_, Aug 08 2021

%F For n > 3, a(n) = A119998(n)*10^q, q = floor(n+1)/2. [corrected by _Bernard Schott_, Aug 08 2021]

%e a(3) = 10538 because 10538^2 = 111049444 starts and ends in 3 identical digits.

%e a(5) = 10541000 because 10541000^2 = 111112681000000 starts with 5 identical digits and ends with 6 identical digits.

%p with(numtheory):T:=array(1..100):p0:=10:for k from 2 to 10 do: id:= 0:for p

%p from p0 to 100000000 while(id=0) do:n:=p^2:l:=length(n):n0:=n:for m from 1 to

%p l do:q:=n0:u:=irem(q, 10):v:=iquo(q, 10):n0:=v :T[m]:=u:od:z:=0:for a from 1

%p to k-1 do: if T[l]=T[l-a] and T[1]=T[1+a] then z:=z+1:else fi:od:if z=k-1 then

%p print(p):id:=1:p0:=p:else fi:od:od:

%Y Cf. A119511, A119998, A186438, A186439, A346926.

%K nonn,base

%O 1,2

%A _Michel Lagneau_, Feb 22 2011

%E Name clarified and a(10) and a(12) corrected by _Bernard Schott_, Aug 08 2021

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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)