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.

A322020 a(n) = Product_{d|n, gcd(d,n/d) is a prime power} gcd(d,n/d).

This page as a plain text file.
%I A322020 #7 Nov 28 2018 20:59:08
%S A322020 1,1,1,2,1,1,1,4,3,1,1,4,1,1,1,16,1,9,1,4,1,1,1,16,5,1,9,4,1,1,1,64,1,
%T A322020 1,1,36,1,1,1,16,1,1,1,4,9,1,1,256,7,25,1,4,1,81,1,16,1,1,1,16,1,1,9,
%U A322020 512,1,1,1,4,1,1,1,144,1,1,25,4,1,1,1,256,81,1,1,16,1,1,1,16,1,81,1,4,1,1,1,4096,1,49,9,100,1,1,1,16,1
%N A322020 a(n) = Product_{d|n, gcd(d,n/d) is a prime power} gcd(d,n/d).
%H A322020 Antti Karttunen, <a href="/A322020/b322020.txt">Table of n, a(n) for n = 1..16384</a>
%F A322020 a(n) = Product_{d|n} gcd(d,n/d)^A069513(gcd(d,n/d)).
%o A322020 (PARI) A322020(n) = { my(m=1,p); fordiv(n, d, p = gcd(d, n/d); if(isprimepower(p), m *= p)); m; };
%Y A322020 Cf. A069513, A294876, A295666.
%K A322020 nonn
%O A322020 1,4
%A A322020 _Antti Karttunen_, Nov 28 2018