login
A116294
Numbers k such that k*(k+1) gives the concatenation of two numbers m and m+1.
5
3, 7, 78, 80919, 91809, 326510, 475025, 524975, 673490, 4323777, 4767132, 5232868, 5676223, 4083911141, 4975000250, 5024999750, 5916088859, 9503960496, 9604950396, 4186904462792, 4313465946775, 5686534053225, 5813095537208, 7504715871407, 7631277355390
OFFSET
1,1
LINKS
EXAMPLE
80919 * (80919 + 1) = 6547965480, the concatenation of 65479 and 65479 + 1.
MATHEMATICA
Union @@ ((x /. List@ ToRules@ Reduce[x (x+1) == 10^# y +y+1 && x>0 && 10^(#-1) <= y+1 < 10^#, {x, y}, Integers]) & /@ Range[13] /. x->{}) (* Giovanni Resta, Jul 08 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
More terms from Giovanni Resta, Jul 08 2018
STATUS
approved