login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A373218 Cubes equal to the sum of a factorial number and a square. 1
1, 27, 729, 46656 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
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
LINKS
EXAMPLE
1 = 1! + 0^2.
27 = 2! + 5^2.
729 = 6! + 3^2.
46656 = 7! + 204^2.
PROG
(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
CROSSREFS
Sequence in context: A098838 A268015 A009971 * A307388 A046240 A042406
KEYWORD
nonn,more
AUTHOR
Gonzalo Martínez, May 28 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 13 15:48 EDT 2024. Contains 375142 sequences. (Running on oeis4.)