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.

A373218 Cubes equal to the sum of a factorial number and a square.

Original entry on oeis.org

1, 27, 729, 46656
Offset: 1

Views

Author

Gonzalo Martínez, May 28 2024

Keywords

Comments

Cubes c^3 for which the c-th row of A167222 includes a factorial number. - Michel Marcus, May 28 2024
a(5) > 8*10^24. - Michael S. Branicky, Jun 23 2024
a(5) > 10^38. - Martin Ehrenstein, Jun 24 2024

Examples

			1 = 1! + 0^2.
27 = 2! + 5^2.
729 = 6! + 3^2.
46656 = 7! + 204^2.
		

Crossrefs

Programs

  • PARI
    isok(k) = my(c=k^3, i=1, p=1); while (1, if (issquare(c-p), return(1)); i++; p *=i; if (p> c, return(0)););
    for (n=1, 50, if (isok(n), print1(n^3, ", "))); \\ Michel Marcus, Jun 06 2024