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

A133801
Number of distinct prime divisors of 3^n - 1.
15
1, 1, 2, 2, 2, 3, 2, 3, 3, 3, 3, 5, 2, 3, 4, 5, 3, 6, 3, 5, 4, 5, 3, 7, 4, 3, 6, 6, 4, 8, 4, 6, 5, 6, 5, 9, 3, 5, 6, 7, 4, 8, 3, 8, 8, 4, 5, 12, 7, 7, 6, 6, 4, 11, 6, 9, 7, 7, 3, 12, 3, 6, 6, 7, 6, 10, 4, 9, 6, 8, 2, 12, 5, 6, 9, 8, 7, 12, 4, 11, 9, 6, 5, 14, 6, 4, 8, 12, 4, 16, 5, 7, 7, 8, 6, 15, 4, 10, 8
OFFSET
1,3
LINKS
Eric Weisstein's World of Mathematics, Prime Factor.
FORMULA
a(n) = omega(3^n - 1) = A001221(3^n - 1).
EXAMPLE
a(4) = omega(3^4 - 1) = omega(80) = omega(2^4 * 5) = 2.
MATHEMATICA
Table[PrimeNu[3^n - 1], {n, 1, 50}] (* G. C. Greubel, May 21 2017 *)
PROG
(PARI) for(n = 1, 100, print1(omega(3^n - 1), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Ryan Propper, Jan 06 2008
EXTENSIONS
Terms to a(660) in b-file from Amiram Eldar, Feb 03 2020
a(661)-a(690) in b-file from Max Alekseyev, May 22 2022
STATUS
approved