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.
%I A362425 #8 Feb 16 2025 08:34:05 %S A362425 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,2,0,0,0,1,1,0,1,1,1,0,1,1, %T A362425 1,1,1,3,1,1,1,2,3,0,3,3,1,1,1,4,1,1,2,3,1,0,3,1,2,1,3,4,2,1,1,2,3,2, %U A362425 2,4,1,1,2,3,2,2,2,4,1,1,1,2,2,1,4,2,2,0,2,3,4,1 %N A362425 Number of partitions of n into 3 distinct perfect powers (A001597). %H A362425 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PerfectPower.html">Perfect Power</a>. %t A362425 perfectPowerQ[n_] := n == 1 || GCD @@ FactorInteger[n][[;; , 2]] > 1; a[n_] := Count[IntegerPartitions[n, {3}], _?(AllTrue[#, perfectPowerQ] && UnsameQ @@ # &)]; Array[a, 100, 0] (* _Amiram Eldar_, May 05 2023 *) %Y A362425 Cf. A001597, A362424. %K A362425 nonn %O A362425 0,22 %A A362425 _Ilya Gutkovskiy_, Apr 19 2023