A369689 a(n) is the least positive number k such that k^2 is the concatenation of m and m + n for some positive number m, or -1 if there is no such k.
36363636364, 428, 8874, 5, 310, 4, 39, -1, 7747, 465
Offset: 0
Examples
a(3) = 5 because 5^2 = 25 is the concatenation of 2 and 2 + 3 = 5, and 5 is the least m that works. a(7) = -1 because it can be proven that 7 is not a square mod (10^d + 1) for any d, and therefore there are no k and m such that k^2 is the concatenation of m and m + 7.
Links
- Robert Israel, Proving a(n) = -1
- Robert Israel, Table of n, a(n), m for n = 0 .. 300 with some conjectured entries.
Crossrefs
Cf. A106497.
Programs
-
Python
from itertools import count from sympy import sqrt_mod def A369689(n): for j in count(0): b = 10**j a = b*10+1 for k in sorted(sqrt_mod(n,a,all_roots=True)): m = (k**2-n)//a if m>0 and b <= m+n < a-1: return k # Chai Wah Wu, Feb 18 2024
Comments