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.

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

This page as a plain text file.
%I A327167 #7 Sep 19 2019 21:13:33
%S A327167 1,1,2,1,1,1,1,1,3,2,1,1,1,1,8,1,1,1,1,2,2,1,1,1,6,1,5,1,1,1,1,1,2,1,
%T A327167 2,1,1,1,2,2,1,2,1,1,12,1,1,1,3,6,2,1,1,1,2,2,2,1,1,1,1,1,12,1,1,1,1,
%U A327167 1,2,8,1,1,1,1,48,1,2,1,1,2,7,1,1,2,2,1,2,1,1,1,2,1,2,1,1,1,1,6,3,3,1,1,1,1,128
%N A327167 a(n) = Product_{d|A276086(n), d>1} A008578(1+A286561(n,d)), where A286561(n,d) gives the highest exponent of d dividing n.
%H A327167 Antti Karttunen, <a href="/A327167/b327167.txt">Table of n, a(n) for n = 1..16384</a>
%H A327167 Antti Karttunen, <a href="/A327167/a327167.txt">Data supplement: n, a(n) computed for n = 1..65537</a>
%F A327167 a(n) = Product_{d|A276086(n), d>1} A008578(1+A286561(n,d)).
%F A327167 Other identities. For all n >= 1:
%F A327167 1+A001222(a(n)) = A327168(n).
%o A327167 (PARI)
%o A327167 A276086(n) = { my(i=0,m=1,pr=1,nextpr); while((n>0),i=i+1; nextpr = prime(i)*pr; if((n%nextpr),m*=(prime(i)^((n%nextpr)/pr));n-=(n%nextpr));pr=nextpr); m; };
%o A327167 A327167(n) = { my(m=1,v); fordiv(A276086(n),d,if((d>1) && ((v = valuation(n,d))>0), m *= prime(v))); (m); };
%Y A327167 Cf. A008578, A276086, A286561, A327168.
%Y A327167 Cf. also A293514, A322312, A323155, A327154, A327155, A327156.
%K A327167 nonn
%O A327167 1,3
%A A327167 _Antti Karttunen_, Sep 19 2019