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.

A332824 a(n) = Product_{d|n} A019565(phi(d)), where phi is Euler totient function A000010.

Original entry on oeis.org

2, 4, 6, 12, 10, 36, 30, 60, 90, 100, 42, 540, 70, 900, 210, 420, 22, 8100, 66, 2100, 3150, 1764, 330, 18900, 550, 4900, 2970, 94500, 770, 44100, 2310, 4620, 6930, 484, 11550, 4252500, 130, 4356, 16170, 115500, 182, 9922500, 546, 291060, 242550, 108900, 2730, 1455300, 8190, 302500, 858, 1131900, 1430, 8820900, 19110
Offset: 1

Views

Author

Antti Karttunen, Feb 25 2020

Keywords

Crossrefs

Cf. A048675 (a left inverse).

Programs

  • PARI
    A019565(n) = {my(j,v); factorback(Mat(vector(if(n, #n=vecextract(binary(n), "-1..1")), j, [prime(j), n[j]])~))}; \\ From A019565
    A332824(n) = { my(m=1); fordiv(n,d,m *= A019565(eulerphi(d))); (m); };

Formula

a(n) = Product_{d|n} A332825(d).
a(n) = A318834(n) * A332825(n).
A048675(a(n)) = n.
A097248(a(n)) = A019565(n).