A243162
Numbers n such that n^2 divides n.n.n where dot "." means concatenation.
Original entry on oeis.org
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
21^2 divides 212121; 91^2 divides 919191; so both 21 and 91 are in the sequence.
-
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
-
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}]
A147554
Primes p such that p^2 divides p.p.p where dot "." means concatenation.
Original entry on oeis.org
3, 13, 37, 9901, 333667, 99990001, 999999000001, 9999999900000001, 13168164561429877, 130654897808007778425046117
Offset: 1
A347541
Numbers q.r such that q*r divides q.r, when q and r have the same number of digits, "." means concatenation, and r may not begin with 0.
Original entry on oeis.org
11, 12, 15, 24, 36, 1352, 1734, 143143, 167334, 16673334, 1666733334, 166667333334, 16666673333334, 1666666733333334, 142857143142857143, 166666667333333334, 16666666673333333334, 1666666666733333333334, 166666666667333333333334, 16666666666673333333333334, 1666666666666733333333333334, 142857142857143142857142857143
Offset: 1
One example for each possible value of k = q.r / (q*r).
a(1) = 11 and 11/(1*1) = 11.
a(2) = 12 and 12/(1*2) = 6.
a(5) = 36 and 36/(3*6) = 2.
a(7) = 1734 and 1734/(17*34) = 3.
a(8) = 143143 and 143143/(143*143) = 7.
A348589
a(n) = (10^n+2)^2 / 6.
Original entry on oeis.org
24, 1734, 167334, 16673334, 1666733334, 166667333334, 16666673333334, 1666666733333334, 166666667333333334, 16666666673333333334, 1666666666733333333334, 166666666667333333333334, 16666666666673333333333334, 1666666666666733333333333334
Offset: 1
a(1) = 12^2 / 6 = 24 and 2.4 = 3 * 2*4.
a(2) = 102^2 / 6 = 1734 and 17.34 = 3 * 17*34.
-
seq((10^n+2)^2 / 6, n=1..14);
-
Table[(10^n + 2)^2/6, {n, 1, 14}] (* Amiram Eldar, Oct 24 2021 *)
LinearRecurrence[{111,-1110,1000},{24,1734,167334},20] (* Harvey P. Dale, Sep 05 2025 *)
-
def a(n): return (10**n+2)**2//6
print([a(n) for n in range(1, 15)]) # Michael S. Branicky, Oct 24 2021
Showing 1-4 of 4 results.
Comments