OFFSET
1,1
COMMENTS
EXAMPLE
16 = 2*2*2*2 and the digital length = 1 for all factors. So 16 is in the sequence. 22=2*11 is not in the sequence because the digital length of 11 is not the same as the digital length of 2.
PROG
(PARI) factorsmooth(n) =
{
local(x, a, j, f, ln);
for(x=2, n, f=0; a = ifactor(x); ln=length(Str(a[1])); for(j=2, length(a), if(length(Str(a[j]))!=ln, f=1; break); ); if(!f, print1(x", ")); )
};
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Cino Hilliard, Jul 03 2009
EXTENSIONS
Offset set to 1 - R. J. Mathar, Sep 16 2009
STATUS
approved