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.

A384430 a(n) is the smallest positive integer k such that the Diophantine equation x^3 + y^3 + z^3 + w^3 = k^5, where 0 < x < y < z < w has exactly n integer solutions.

Original entry on oeis.org

8, 9, 10, 13, 74, 23, 40, 88, 31, 22, 17, 56
Offset: 1

Views

Author

Zhining Yang, Jun 14 2025

Keywords

Comments

a(13)>360.

Examples

			a(3)=10, because 10^5 = 6^3 + 24^3 + 34^3 + 36^3 = 12^3 + 16^3 + 34^3 + 38^3 = 10^3 + 20^3 + 30^3 + 40^3 and no integer less than 10 has 3 solutions.
		

Crossrefs

Programs

  • Mathematica
    s=Table[{k, Length@Select[PowersRepresentations[k^5, 4, 3], 0<#[[1]]<#[[2]]<#[[3]]<#[[4]]&]}, {k, 20}]; a=Table[SelectFirst[s, #[[2]]==k&], {k, 4}][[All, 1]]