A116147
Numbers k such that k concatenated with k-2 gives the product of two numbers which differ by 9.
Original entry on oeis.org
4962, 237412345332, 262912791034, 468307643502
Offset: 1
4962//4960 = 7040 * 7049, where // denotes concatenation.
A116333
k times k+8 gives the concatenation of two numbers m and m+6.
Original entry on oeis.org
23, 70, 480, 513, 942, 76303, 8923139715521228493004072379869, 77558981961505761619171327422086381910161500424346805, 4494071669430455134012149964165405936125116123191254722256003057119, 5505928330569544865987850035834594063874883876808745277743996942874
Offset: 1
76303 * 76311 = 58227//58233, where // denotes concatenation, so 76303 is a term.
-
from itertools import count, islice
from sympy import sqrt_mod
def A116333_gen(): # generator of terms
for j in count(0):
b = 10**j
a = b*10+1
for k in sorted(sqrt_mod(22,a,all_roots=True)):
if a*(b-6) <= k**2-22 < a*(a-7) and k>4:
yield k-4
A116333_list = list(islice(A116333_gen(),10)) # Chai Wah Wu, Feb 21 2024
A116196
Numbers k such that k concatenated with k+5 gives the product of two numbers which differ by 8.
Original entry on oeis.org
68, 12585135, 17104748, 34388975, 41634068, 1100788419388203283323, 1415702077730399453204, 1615864923864298764860, 1993221328488651223275, 3064119854121476750348, 3576300448435797632079, 3890538749986876109435
Offset: 1
41634068//41634073 = 64524463 * 64524471, where // denotes concatenation.
-
from itertools import count, islice
from sympy import sqrt_mod
def A116196_gen(): # generator of terms
for j in count(0):
b = 10**j
a = b*10+1
for k in sorted(sqrt_mod(21,a,all_roots=True)):
if a*(b-5) <= k**2-21 < a*(a-6) and k>4:
yield (k**2-21)//a
A116196_list = list(islice(A116196_gen(),10)) # Chai Wah Wu, Feb 21 2024
A116210
Numbers k such that k concatenated with k+7 gives the product of two numbers which differ by 8.
Original entry on oeis.org
73, 101, 466, 577, 913, 938, 1027699544347561123497066503878337002, 1043891904746431592729642732987859418, 1406975496023772119400647610836667853, 3905041089422306453928649115284570106, 4582028691256280367677282506239892877, 4616148891509946292221374856300250093
Offset: 1
938//945 = 965 * 973, where // denotes concatenation.
-
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
A116210_list = list(islice(A116210_gen(),10)) # Chai Wah Wu, Feb 22 2024
A116203
Numbers k such that k concatenated with k+6 gives the product of two numbers which differ by 9.
Original entry on oeis.org
24, 26, 1014, 1196, 4280, 4646, 10512559797957763880, 22117246687805424846, 24058546574769555806, 25959521962351403984, 28059292876752476030, 45666404019969616806, 51120259070514684854, 56575813788698035286
Offset: 1
4646//4652 = 6812 * 6821, where // denotes concatenation.
Showing 1-5 of 5 results.
Comments