A243534 Numbers n such that the list of all divisors of n contains only 1 distinct digit (in base 10).
1, 11, 1111111111111111111, 11111111111111111111111
Offset: 1
Examples
11 is in sequence because the list of the divisors of 11: (1, 11) contains only 1 distinct digit.
Crossrefs
Programs
-
Excel
[Row n = 1 …10000; Column A: A(n) = A095048(n); Column B: B(n) = IF(A(n)=1;A(n)); Arrangement of column B]
Formula
a(1) = 1; for n >= 2, a(n+1) = A004022 (prime repunits).
Comments