A116133
Numbers k such that k concatenated with k-4 gives the product of two numbers which differ by 9.
Original entry on oeis.org
64, 1876, 3214, 8776, 17227120144584448354, 19391087990479091186, 21557280540171744040, 23970390649400564404, 26051259424903756364, 28697643366269876506, 31320461807899711990, 34215988012600009664
Offset: 1
8776//8772 = 9364 * 9373, where // denotes concatenation. Also 8776//8780 = 9365 * 9372.
A116174
Numbers k such that k concatenated with k+2 gives the product of two numbers which differ by 8.
Original entry on oeis.org
1143, 4382, 4943, 24941511, 25058558, 94090583, 616729341438, 638432642423, 978717194478, 994009005983, 1636200161363007, 1710661666314798, 1805005185949007, 1906479843038783, 1986790648039982, 3072104679280383
Offset: 1
94090583//94090585 = 97000297 * 97000305, where // denotes concatenation.
94090583//94090592 = 97000298 * 97000304.
A116187
Numbers k such that k concatenated with k+4 gives the product of two numbers which differ by 6.
Original entry on oeis.org
12, 43, 20440836, 30017751, 61336887, 52400871197755334426147587, 53651708763838760619655612, 56652002793835820319625612, 57952296063256269823192087, 17684775866714240650923831481623
Offset: 1
61336887//61336891 = 78317867 * 78317873, where // denotes concatenation. 61336887//61336896 = 78317868 * 78317872.
A116126
Numbers k such that k concatenated with k-5 gives the product of two numbers which differ by 8.
Original entry on oeis.org
10, 6752089, 6448802889351008245, 18894512461523256139943105859903480218905, 31958875438439894736354375209245786214798
Offset: 1
A116167
Numbers k such that k concatenated with k+1 gives the product of two numbers which differ by 7.
Original entry on oeis.org
7, 493, 607, 629, 757, 17927, 33247, 93869, 19467217, 31223879, 72757727, 13454739732766891651472740499, 40093333713615672956030023507, 48089152118689474641229584727, 66424317743191484432891678269
Offset: 1
72757727//72757728 = 85298137 * 85298144, where // denotes concatenation.
A116179
Numbers k such that k concatenated with k+3 gives the product of two numbers which differ by 5.
Original entry on oeis.org
1, 3, 81, 1353, 3997, 7723, 23761, 26271, 76771, 1415683, 3890571, 8495497, 1066870443, 1239366513, 4198438981, 4534273891, 6502317141, 6918679731, 2199164200036329043, 2820114781174460091, 5500888421709400741
Offset: 1
A116207
Numbers k such that k concatenated with k+7 gives the product of two numbers which differ by 5.
Original entry on oeis.org
493, 607, 629, 757, 17927, 33247, 93869, 19467217, 31223879, 72757727, 13454739732766891651472740499, 40093333713615672956030023507, 48089152118689474641229584727, 66424317743191484432891678269
Offset: 1
72757727//72757734 = 85298138 * 85298143, where // denotes concatenation.
-
f:= proc(d) # terms where k+7 has d digits
local S,x,R,k;
S:= map(t -> rhs(op(t)), [msolve(x*(x+5) = 7, 10^d+1)]);
R:= NULL:
for x in S do
k := (x*(x+5)-7)/(10^d+1);
if ilog10(k+7) = d - 1 then R:= R,k fi
od:
op(sort([R]))
end proc:
map(f, [$1..31]); # Robert Israel, Nov 27 2024
A116114
Numbers k such that k concatenated with k-7 gives the product of two numbers which differ by 9.
Original entry on oeis.org
13, 493, 607, 629, 757, 17927, 33247, 93869, 19467217, 31223879, 72757727, 13454739732766891651472740499, 40093333713615672956030023507, 48089152118689474641229584727, 66424317743191484432891678269
Offset: 1
A116181
Numbers k such that k concatenated with k+3 gives the product of two numbers which differ by 8.
Original entry on oeis.org
57, 1062, 4545, 9517, 65040816823705919148274557212824575357, 73854453524198329292125744115286819630, 78444109191135472482770868099397646205
Offset: 1
9517//9520 = 9752 * 9760, where // denotes concatenation.
A116311
Numbers k such that k*(k+7) gives the concatenation of two numbers m and m+3.
Original entry on oeis.org
8445, 8810, 69125298546226023971, 69855225553525294044, 74604750601020544519, 75334677608319814592, 92496418993920707746, 93226346001219977819, 97975871048715228294, 98705798056014498367
Offset: 1
8810 * 8817 = 7767//7770, where // denotes concatenation.
Showing 1-10 of 12 results.
Comments