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.

A284639 Number of ways to write n > 1 as a power of a product n = (x_1*..*x_k)^y, where y >= 1, x_i > 1, and x_i <= x_j for i < j.

This page as a plain text file.
%I A284639 #13 Apr 06 2017 21:47:59
%S A284639 1,1,3,1,2,1,4,3,2,1,4,1,2,2,8,1,4,1,4,2,2,1,7,3,2,4,4,1,5,1,8,2,2,2,
%T A284639 11,1,2,2,7,1,5,1,4,4,2,1,12,3,4,2,4,1,7,2,7,2,2,1,11,1,2,4,17,2,5,1,
%U A284639 4,2,5,1,16,1,2,4,4,2,5,1,12,8,2,1,11,2
%N A284639 Number of ways to write n > 1 as a power of a product n = (x_1*..*x_k)^y, where y >= 1, x_i > 1, and x_i <= x_j for i < j.
%C A284639 a(1)=infinity is not an integer so is necessarily omitted from the data.
%H A284639 Vincenzo Librandi, <a href="/A284639/b284639.txt">Table of n, a(n) for n = 2..1000</a>
%e A284639 The a(64)=17 ways to write 64 as a power of a product:
%e A284639 (2*2*2*2*2*2)^1   (2*2*2)^2  (2*2)^3  (2)^6
%e A284639 (2*2*2*2*4)^1     (2*4)^2    (4)^3
%e A284639 (2*2*2*8)^1       (8)^2
%e A284639 (2*2*4*4)^1
%e A284639 (2*2*16)^1
%e A284639 (2*4*8)^1
%e A284639 (2*32)^1
%e A284639 (4*4*4)^1
%e A284639 (4*16)^1
%e A284639 (8*8)^1
%e A284639 (64)^1.
%t A284639 nn=85;
%t A284639 postfacs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[postfacs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]];
%t A284639 Table[DivisorSum[GCD@@FactorInteger[n][[All,2]],Length[postfacs[n^(1/#)]]&],{n,2,nn}]
%Y A284639 Cf. A001055, A001597, A007916, A089723.
%K A284639 nonn
%O A284639 2,3
%A A284639 _Gus Wiseman_, Mar 30 2017