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.

A290399 Number of solutions to Diophantine equation x + y + z = prime(n) with x*y*z = k^3 (0 < x <= y <= z).

This page as a plain text file.
%I A290399 #15 Oct 21 2022 19:46:43
%S A290399 0,1,0,1,0,1,1,1,1,1,2,1,2,2,3,1,2,3,2,1,3,2,2,2,3,1,2,3,3,3,4,3,5,2,
%T A290399 1,5,1,4,3,3,3,3,4,5,3,3,6,3,2,3,5,5,3,6,8,2,3,7,5,7,3,5,7,5,4,1,7,4,
%U A290399 1,8,6,5,4,5,4,7,4,9,6,6,5,8,5,7,6,4
%N A290399 Number of solutions to Diophantine equation x + y + z = prime(n) with x*y*z = k^3 (0 < x <= y <= z).
%H A290399 Tianxin Cai and Deyi Chen, <a href="https://doi.org/10.1090/S0025-5718-2013-02685-3">A new variant of the Hilbert-Waring problem</a>, Math. Comp. 82 (2013), 2333-2341.
%e A290399 a(11) = 2 because the equation x + y + z = 31 (prime(11)) has exactly 2 solutions with x*y*z = k^3: (x, y, z) = (1, 5, 25) and (1, 12, 18), which satisfy 1*5*25 = 5^3 and 1*12*18 = 6^3.
%t A290399 a[n_] := Length@ Select[ IntegerPartitions[ Prime[n], {3}], IntegerQ[ (Times @@ #)^(1/3)] &]; Array[a, 50] (* _Giovanni Resta_, Aug 07 2017 *)
%Y A290399 Cf. A000040, A000578, A233386.
%K A290399 nonn
%O A290399 1,11
%A A290399 _XU Pingya_, Jul 29 2017