login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A094209
Numbers n such that the sum of n's digits times the sum of the factorials of n's digits is equal to n.
0
1, 224, 441, 21660, 26406
OFFSET
1,2
COMMENTS
There are no further terms. - Farideh Firoozbakht, Apr 16 2008
EXAMPLE
(4 + 4 + 1)*(4! + 4! + 1!) = 441.
MATHEMATICA
f[n_] := Plus @@ (Factorial /@ IntegerDigits[n])Plus @@ IntegerDigits[n]; Select[ Range[ 10^7], f[ # ] == # &] (* Robert G. Wilson v, May 29 2004 *)
CROSSREFS
Cf. A005188.
Sequence in context: A177770 A202442 A331371 * A158227 A061524 A156813
KEYWORD
base,nonn,fini,full
AUTHOR
Jason Earls, May 27 2004
STATUS
approved