login
A116102
Numbers k such that k concatenated with k-8 gives the product of two numbers which differ by 2.
5
16, 1337032, 2084503, 2953232, 4023943, 1330033613070195328, 4036108433661798551, 8283744867954114232, 6247320195351414276186411625291, 9452080202814205132771066881607
OFFSET
1,1
COMMENTS
If k-8 has d digits, the concatenation is k//k-8 = 10^d*k+k-8 = m*(m+2), therefore k//k-7 = 10^d*k+k-7 = (m+1)^2, so there is a large overlap with A115434. - R. J. Mathar, May 22 2026
EXAMPLE
4023943//4023935 = 6343455 * 6343457, where // denotes
concatenation.
CROSSREFS
KEYWORD
nonn,base,changed
AUTHOR
Giovanni Resta, Feb 06 2006
STATUS
approved