OFFSET
0,3
COMMENTS
How many trailing zeros are there in a(n)?
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..100
FORMULA
a(n) = Product_{k=1..n} A004086(k). - Michel Marcus, Jun 28 2018
EXAMPLE
a(11) = 3991680 = 1*2*3*4*5*6*7*8*9*R(10)*R(11) = 1*2*3*4*5*6*7*8*9*1*11.
MATHEMATICA
FoldList[Times, 1, Table[FromDigits[Reverse[IntegerDigits[n]]], {n, 20}]] (* Harvey P. Dale, Aug 20 2012 *)
PROG
(PARI) Rev(x)= { local(d); r=0; while (x>0, d=x-10*(x\10); x\=10; r=r*10 + d); return(r) }
{ for (n=0, 100, if (n, a*=Rev(n), a=1); write("b062919.txt", n, " ", a) ) } \\ Harry J. Smith, Aug 13 2009
CROSSREFS
KEYWORD
base,nonn,easy
AUTHOR
Amarnath Murthy, Jul 02 2001
EXTENSIONS
More terms from Lior Manor and Larry Reeves (larryr(AT)acm.org), Jul 05 2001
STATUS
approved