OFFSET
0,3
LINKS
Bruno Berselli, Table of n, a(n) for n = 0..1000
Renzo Remotti, Positional Factorial Sequence
EXAMPLE
a(1)=1 because 1!*10^0=1, a(15)=130 because 1!*10^1+5!*10^0=130.
PROG
(Magma) [n eq 0 select 1 else &+[Factorial(Reverse(Intseq(n))[k])*10^(#Intseq(n)-k): k in [1..#Intseq(n)]]: n in [0..50]]; // Bruno Berselli, May 15 2012
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Renzo Remotti, Apr 23 2012
EXTENSIONS
Offset changed from 1 to 0 by Bruno Berselli, May 16 2012
STATUS
approved