cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A008334 Number of distinct primes dividing p-1, where p = n-th prime.

Original entry on oeis.org

0, 1, 1, 2, 2, 2, 1, 2, 2, 2, 3, 2, 2, 3, 2, 2, 2, 3, 3, 3, 2, 3, 2, 2, 2, 2, 3, 2, 2, 2, 3, 3, 2, 3, 2, 3, 3, 2, 2, 2, 2, 3, 3, 2, 2, 3, 4, 3, 2, 3, 2, 3, 3, 2, 1, 2, 2, 3, 3, 3, 3, 2, 3, 3, 3, 2, 4, 3, 2, 3, 2, 2, 3, 3, 3, 2, 2, 3, 2, 3, 3, 4, 3, 2, 3, 3, 2, 3, 3, 4, 2, 2, 2, 3, 3
Offset: 1

Views

Author

Keywords

Comments

This is omega(p-1), i.e. A001221(A006093(n)). For Omega(p-1) = A001222(A006093(n)), see A023508. - Lekraj Beedassy, Oct 08 2004
Primes counted without multiplicity. - Harvey P. Dale, May 05 2018

References

  • N. P. Ryzhova, Asymptotic formulae in a binary problem of shifted prime numbers (in Russian), Additive problems of number theory, Interuniv. Collect. Sci. Works, Kujbyshev 1985 (1985), pp. 25-31.

Crossrefs

Programs

  • Maple
    for i from 1 to 500 do if isprime(i) then print(nops(factorset(i-1))); fi; od;
  • Mathematica
    PrimeNu[#]&/@(Prime[Range[100]]-1) (* Harvey P. Dale, May 05 2018 *)
  • PARI
    a(n,p=prime(n))=omega(p-1) \\ Charles R Greathouse IV, Nov 29 2024

Formula

Sum_{k; prime(k)<=n} a(k) = n*log(log(n))/log(n) + O(n/log(n)) (Haselgrove, 1951; Halberstam, 1956; Ryzhova, 1985). - Amiram Eldar, Mar 05 2021 [corrected by Charles R Greathouse IV, Nov 29 2024]

Extensions

Definition clarified by Harvey P. Dale, May 05 2018