A115556 Numbers whose square is the concatenation of two numbers 9*m and m.
12857142857142857142857142857142857143, 25714285714285714285714285714285714286, 117391304347826086956521739130434782608695652173913043478261
Offset: 1
Links
- Robert Israel, Table of n, a(n) for n = 1..12
Programs
-
Maple
F:= proc(d) local R,F,t,b,r,q,s,m0,x0,k; R:= NULL; F:= ifactors(9*10^d+1)[2]; b:= mul(t[1]^floor(t[2]/2),t=F); for r in numtheory:-divisors(b) do x0:= (9*10^d+1)/r; m0:= x0/r; for k from ceil(sqrt(10^(d-1)/m0)) to floor(sqrt(10^d/m0)) do R:= R, x0*k; od od; R end proc: sort(map(F, [$1..90])); # Robert Israel, Aug 24 2023
Extensions
Definition modified by Georg Fischer, Jul 26 2019
Comments