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”).

A182287
If n = p*10^i + q*10^(i-1) + r*10^(i-2) + ... in decimal notation, then a(n) = p!*10^i + q!*10^(i-1) + r!*10^(i-2)+ ... .
1
1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 11, 11, 12, 16, 34, 130, 730, 5050, 40330, 362890, 21, 21, 22, 26, 44, 140, 740, 5060, 40340, 362900, 61, 61, 62, 66, 84, 180, 780, 5100, 40380, 362940, 241, 241, 242, 246, 264, 360, 960, 5280, 40560, 363120
OFFSET
0,3
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
Sequence in context: A269221 A071937 A061602 * A248778 A033647 A319550
KEYWORD
nonn,base
AUTHOR
Renzo Remotti, Apr 23 2012
EXTENSIONS
Offset changed from 1 to 0 by Bruno Berselli, May 16 2012
STATUS
approved