OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
2357 is a prime, thus the number of distinct prime factors is 1.
The number of distinct prime factors of 31374143 is 3.
67717379 is prime, thus the number of distinct prime factors is 1.
MATHEMATICA
f[n_] := Length[ FactorInteger[ FromDigits[ Flatten[ Table[ IntegerDigits[ Prime[i]], {i, n, n + 3}]] ]]]; Table[ f[n], {n, 105}] (* Robert G. Wilson v, Feb 22 2005 *)
PrimeNu[FromDigits[Flatten[IntegerDigits/@#]]]&/@Partition[ Prime[ Range[ 120]], 4, 1] (* Harvey P. Dale, Mar 07 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Feb 08 2005
EXTENSIONS
More terms from Robert G. Wilson v, Feb 22 2005
STATUS
approved