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.

A328319 Sum of digits when A328316(n) is written in primorial base; number of prime factors in A328316(1+n), counted with multiplicity.

Original entry on oeis.org

0, 1, 1, 2, 1, 3, 3, 7, 21, 159, 12927, 132571335
Offset: 0

Views

Author

Antti Karttunen, Oct 14 2019

Keywords

Crossrefs

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    A328316(n) = if(!n,0,A276086(A328316(n-1)));
    A276150(n) = { my(s=0, p=2, d); while(n, d = (n%p); s += d; n = (n-d)/p; p = nextprime(1+p)); (s); };
    A328319(n) = A276150(A328316(n));
    \\ Or alternatively, more slowly as:
    A328319(n) = bigomega(A328316(1+n));

Formula

a(n) = A276150(A328316(n)).
a(n) = A001222(A328316(1+n)).