OFFSET
0,3
COMMENTS
The primes in this sequence are 2, 369361, 379721, 42643, 1008859, 1505873, 2388293, 3289723, .... [Extended by Robert G. Wilson v, Sep 30 2009]
LINKS
FORMULA
EXAMPLE
The sum of the factorials of each digit of 9694845 = 9! + 6! + 9! + 4! + 8! + 4! + 5! = 766968.
MAPLE
a:= n-> add(i!, i=convert(binomial(2*n, n)/(n+1), base, 10)):
seq(a(n), n=0..42); # Alois P. Heinz, Jul 09 2023
MATHEMATICA
f[n_] := Plus @@ (IntegerDigits@ n!); Table[f@ CatalanNumber@ n, {n, 0, 35}] (* Robert G. Wilson v, Sep 30 2009 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Sep 06 2009
EXTENSIONS
a(16) onwards added and offset changed from 1 to 0 by Robert G. Wilson v, Sep 30 2009
STATUS
approved