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.

A344697 a(n) = A001615(n) / gcd(sigma(n), A001615(n)).

Original entry on oeis.org

1, 1, 1, 6, 1, 1, 1, 4, 12, 1, 1, 6, 1, 1, 1, 24, 1, 12, 1, 6, 1, 1, 1, 4, 30, 1, 9, 6, 1, 1, 1, 16, 1, 1, 1, 72, 1, 1, 1, 4, 1, 1, 1, 6, 12, 1, 1, 24, 56, 30, 1, 6, 1, 9, 1, 4, 1, 1, 1, 6, 1, 1, 12, 96, 1, 1, 1, 6, 1, 1, 1, 48, 1, 1, 30, 6, 1, 1, 1, 24, 108, 1, 1, 6, 1, 1, 1, 4, 1, 12, 1, 6, 1, 1, 1, 16, 1, 56, 12, 180
Offset: 1

Views

Author

Antti Karttunen, May 26 2021

Keywords

Comments

This is not multiplicative. The first point where a(m*n) = a(m)*a(n) does not hold for coprime m and n is 108 = 4*27, where a(108) = 27, although a(4) = 6 and a(27) = 9. See A344702.

Crossrefs

Programs

  • PARI
    A001615(n) = if(1==n,n, my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1))); \\ After code in A001615
    A344697(n) = { my(u=A001615(n)); (u/gcd(u,sigma(n))); };

Formula

a(n) = A001615(n) / A344695(n).