A115437 Numbers m such that the concatenation of m with m+4 gives a square.
96, 205, 300, 477, 732, 1920, 3157, 52896, 120085, 427020, 8264460, 88581312, 112000885, 112917765, 143075580, 152863360, 193537077, 233788192, 266755221, 313680096, 370908477, 386568925, 440852992, 442670220
Offset: 1
Examples
Using "." to denote concatenation, 120085.120089 = 346533^2.
Crossrefs
Programs
-
Mathematica
Select[Range[10^5],IntegerQ@Sqrt@FromDigits@Flatten[IntegerDigits/@{#,#+4}]&] (* Giorgos Kalogeropoulos, Jul 27 2021 *)
Comments