A116293 Numbers k such that k * (k+9) is the concatenation of a number m with itself.
2, 92, 420, 572, 693, 728, 992, 9855, 9992, 36355, 63637, 99992, 970298, 999992, 4545455, 5454537, 9999992, 88235295, 99999992, 351069983, 403018035, 493927126, 506072866, 596981957, 648930009, 736842097, 739839100, 766233767, 769230761, 827751188, 857142858, 860139852, 879699240, 909090910
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,9)),d=1..10)
Extensions
Name edited and more terms from Robert Israel, Apr 09 2025
Comments