login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A102621
Number of distinct prime factors of (nonprime A018252(n) concatenated A018252(n) times).
1
0, 3, 6, 5, 3, 8, 10, 9, 13, 11, 11, 12, 13, 11, 13, 10, 10, 11, 13, 21, 15, 14, 11, 13, 17, 7, 14, 16
OFFSET
1,2
FORMULA
a(n) = A001221(A102622(n)). - R. J. Mathar, Aug 24 2011
EXAMPLE
For n=2, the number of distinct prime factors of 4444 is 3.
For n=3, the number of distinct prime factors of 666666 is 6.
For n=4, the number of distinct prime factors of 88888888 is 5.
For n=5, the number of distinct prime factors of 999999999 is 3.
MAPLE
read("transforms") ;
A102621 := proc(n) c := A018252(n) ; x := c ; for j from 2 to c do x := digcat2(x, c) ; end do; A001221(x) ; end proc: # R. J. Mathar, Aug 24 2011
MATHEMATICA
PrimeNu/@(FromDigits/@(Flatten[Table[IntegerDigits[#], #]]&/@Select[ Range[ 40], !PrimeQ[#]&])) (* Harvey P. Dale, Sep 03 2018 *)
CROSSREFS
Cf. A101081.
Sequence in context: A188670 A361985 A346602 * A289504 A347538 A159066
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, Jan 31 2005
EXTENSIONS
More terms from Harvey P. Dale, Sep 03 2018
STATUS
approved