A243162 Numbers n such that n^2 divides n.n.n where dot "." means concatenation.
1, 3, 13, 21, 37, 39, 91, 1443, 3367, 9901, 157737, 333667, 999001, 3075403, 9226209, 14287143, 33336667, 99990001, 1171182883, 1224848037, 1286294191, 1397863441, 1428557143, 1469179621, 1535254357, 1568996211, 1753536967, 1792076241, 1839599913, 1891910811
Offset: 1
Examples
21^2 divides 212121; 91^2 divides 919191; so both 21 and 91 are in the sequence.
Links
- Hans Havermann, Table of n, a(n) for n = 1..1366
Crossrefs
Programs
-
Maple
Res:= {}: for d from 1 to 15 do Res:= Res union select(t -> t >= 10^(d-1) and t < 10^d, numtheory:-divisors(100^d+10^d+1)) od: sort(convert(Res,list)); # Robert Israel, Jan 11 2017
-
Mathematica
Do[d=Divisors[100^i+10^i+1];s=Select[d,Length[IntegerDigits[#]]==i&];If[Length[s]>0,Do[Print[s[[j]]],{j,Length[s]}]],{i,42}]
Comments