OFFSET
1,1
COMMENTS
This does not count x^2 and (-x)^2 as distinct, nor does it count 0! and 1! as distinct.
For any two factorials a > b, where a-b = m*n where m > n and (m and n are both even or m and n are both odd), (((m-n)/2)^2 + a) will appear in this sequence.
LINKS
Robert Israel, Table of n, a(n) for n = 1..3661
EXAMPLE
145 = 5^2 + 5! = 11^2 + 4! = 12^2 + 1!.
MAPLE
Nf:= 15: # for terms <= (Nf) + 1!
Facts:= [seq(i!, i=1..Nf)]:
N:= Facts[-1]+1:
R:= 'R':
for i from 0 to isqrt(N) do
for j from 1 to Nf do
v:= Facts[j]+i^2;
if v > N then break fi;
if not assigned(R[v]) then R[v]:= [i, j]
else R[v]:= R[v], [i, j]
fi
od od:
J:= [indices(R)]:
sort(map(op, select(t -> nops([R[op(t)]])>=2, J))); # Robert Israel, Aug 08 2025
MATHEMATICA
With[{f = Range[8]!}, c[n_] := Count[f, _?(IntegerQ @ Sqrt[n - #] &)]; Select[Range[f[[-1]]], c[#] > 1 &]] (* Amiram Eldar, Oct 30 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Walter Robinson, Oct 30 2022
STATUS
approved
