A116290 Numbers k such that k * (k+6) is the concatenation of a number m with itself.
5, 95, 462, 533, 715, 819, 995, 3425, 6570, 9995, 90904, 99995, 980199, 999995, 3636358, 6363637, 9999995, 41176465, 58823530, 99999995, 413533835, 426573427, 428571423, 432620006, 567379989, 571428572, 573426568, 586466160, 686261108, 725274726, 727272722
Offset: 1
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
f:= proc(d) 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,-6],[a,b]) by t do q:= x*(x+6)/t; if q >= 10^d then break fi; if q >= 10^(d-1) then R:= R, x fi; od od; sort([R]); end proc: seq(op(f(d)),d=1..10); # Robert Israel, Apr 08 2025
Extensions
Name edited by Robert Israel, Apr 08 2025
Comments