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.

A374213 The 3-adic valuation of A328768(n), where A328768 is the first primorial based variant of the arithmetic derivative.

Original entry on oeis.org

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

Views

Author

Antti Karttunen, Jun 30 2024

Keywords

Crossrefs

Cf. A007949, A328768, A373991, A373992 (after its two initial terms, gives the indices of nonzero terms in this sequence).
Cf. also A374133, A374212.

Programs

  • PARI
    A002110(n) = prod(i=1,n,prime(i));
    A328768(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]*A002110(primepi(f[i,1])-1)/f[i, 1]));
    A374213(n) = valuation(A328768(n), 3);

Formula

a(n) = A007949(A328768(n)).