OFFSET
1,1
FORMULA
EXAMPLE
620 is in the sequence because 6! + 2! + 0! = 720 + 2 + 1 = 723, and sum of the divisors 1< d< n = sigma(620) - n - 1 = 1344 - 620 - 1 = 723.
MAPLE
isA202239 := proc(n)
end proc:
for n from 1 do
if isA202239(n) then
print(n) ;
end if;
end do; # R. J. Mathar, Dec 18 2011
MATHEMATICA
Q[n_]:=Module[{a=Total[Rest[Most[Divisors[n]]]]}, a == Total[IntegerDigits[n]!]]; Select[Range[2, 10^8], Q]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Dec 16 2011
EXTENSIONS
a(17)-a(27) from Donovan Johnson, Jan 14 2012
STATUS
approved