A116289 Numbers k such that k*(k+5) gives the concatenation of a number m with itself.
6, 96, 385, 429, 567, 611, 814, 996, 4521, 5475, 9996, 90910, 99996, 316832, 683164, 999996, 3636364, 6363632, 9999996, 82352942, 99999996, 331668332, 368421053, 395604391, 442767754, 461538462, 488721800, 511278196, 538461534, 557232242, 604395605, 631578943, 668331664, 700089385, 727272728
Offset: 1
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
q:= proc(d,m) local R,t,a,b,x,q; t:= 10^d+1; R:= NULL; for a in numtheory:-divisors(t) do b:= t/a; if igcd(a,b) > 1 then next fi; for x from chrem([0,-m],[a,b]) by t do q:= x*(x+m)/t; if q >= 10^d then break fi; if q >= 10^(d-1) then R:= R, x fi; od od; sort(convert({R},list)); end proc: seq(op(q(d,5)),d=1..10); # Robert Israel, Apr 09 2025
Extensions
More terms from Robert Israel, Apr 09 2025
Comments