login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A116345
Numbers k such that k*(k+6) gives the concatenation of two numbers m and m+8.
6
41, 54, 40354308, 59645687, 39704957106129738595969799927611, 44505281604832422780051712184760, 45053875613995255103944518907120, 54946124386004744896055481092875, 55494718395167577219948287815235, 60295042893870261404030200072384, 68683652917306421895276391964227
OFFSET
1,1
LINKS
EXAMPLE
59645687 * 59645693 = 35576083//35576091, where // denotes concatenation.
MAPLE
f:= proc(d) local R;
R:= map(rhs@op, {msolve(x^2=17, 10^d+1)});
R:= map(t -> (t-3) mod (10^d+1), R);
op(select(proc(t) local m; m:= (t*(t+6)-8)/(10^d+1)+8; m >= 10^(d-1) and m < 10^d end proc, R));
end proc;
sort(convert({seq(f(i), i=1..50)}, list)); # Robert Israel, Jan 17 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
More terms from Robert Israel, Jan 17 2017
STATUS
approved