OFFSET
1,1
EXAMPLE
938//945 = 965 * 973, where // denotes concatenation.
PROG
(Python)
from itertools import count, islice
from sympy import sqrt_mod
def A116210_gen(): # generator of terms
for j in count(0):
b = 10**j
a = b*10+1
for k in sorted(sqrt_mod(23, a, all_roots=True)):
if a*(b-7) <= k**2-23 < a*(a-8) and k>4:
yield (k**2-23)//a
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
a(10)-a(12) from Chai Wah Wu, Feb 22 2024
STATUS
approved