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”).

A102745
Number of distinct prime factors of four consecutively concatenated primes.
1
1, 3, 4, 3, 4, 3, 3, 2, 3, 2, 3, 3, 3, 4, 4, 3, 3, 4, 1, 2, 4, 3, 1, 3, 4, 3, 4, 4, 3, 2, 5, 2, 3, 1, 1, 2, 2, 2, 2, 2, 3, 5, 3, 2, 4, 4, 2, 3, 5, 4, 3, 4, 3, 5, 3, 3, 3, 2, 4, 2, 4, 3, 3, 3, 4, 4, 2, 3, 2, 3, 2, 3, 2, 4, 3, 1, 2, 4, 3, 3, 3, 4, 4, 2, 4, 3, 4, 5, 4, 4, 2, 4, 5, 4, 3, 1, 3, 3, 4, 3, 4, 1, 2, 3, 4
OFFSET
1,2
LINKS
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
Sequence in context: A293072 A120447 A083021 * A108026 A010702 A345439
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Feb 08 2005
EXTENSIONS
More terms from Robert G. Wilson v, Feb 22 2005
STATUS
approved