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.

A065433 Numbers n such that there exist x, y with n^2 = x! + y!.

Original entry on oeis.org

2, 5, 11, 12, 71
Offset: 1

Views

Author

Antreas P. Hatzipolakis (xpolakis(AT)otenet.gr), Nov 23 2001

Keywords

Comments

a(6) > 10^78. - Sascha Kurz, Mar 24 2002
a(6) > 10^1545. - Robert G. Wilson v, Apr 06 2006
a(6) > 10^10000. - Sean A. Irvine, Sep 03 2023

Examples

			2^2 = 2!+2!; 5^2 = 4!+1!; 11^2 = 5!+1!; 12^2 = 5!+4!; 71^2 = 7!+1!.
		

Programs

  • Mathematica
    Sqrt@ Select[ Sort@ Flatten@ Table[x! + y!, {x, 650}, {y, x}], IntegerQ@ Sqrt@ # &] (* Robert G. Wilson v, Apr 06 2006 *)