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.

A329037 a(n) = Product_{d|n, d>1} A008578(1+A286561(A276086(n),d)), where A286561(x,d) gives the exponent of the highest power of d dividing x.

Original entry on oeis.org

1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 12, 1, 1, 1, 1, 5, 2, 1, 1, 1, 21, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 2, 1, 2, 1, 1, 12, 1, 1, 1, 2, 10, 2, 1, 1, 1, 7, 2, 2, 1, 1, 1, 1, 1, 12, 1, 1, 1, 1, 1, 2, 12, 1, 1, 1, 1, 48, 1, 3, 1, 1, 5, 2, 1, 1, 3, 7, 1, 2, 1, 1, 1, 5, 1, 2, 1, 1, 1, 1, 10, 2, 2, 1, 1, 1, 1, 720
Offset: 1

Views

Author

Antti Karttunen, Nov 08 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); };
    A329037(n) = { my(m=1,x=A276086(n),v); fordiv(n,d,if((d>1) && ((v = valuation(x,d))>0), m *= prime(v))); (m); };

Formula

a(n) = Product_{d|n, d>1} A008578(1+A286561(A276086(n),d)).
1+A001222(a(n)) = A327168(n).