login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062919 "Reverse factorials": product of the digit reversals of the numbers 1 through n. 2
1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 362880, 3991680, 83825280, 2598583680, 106541930880, 5433638474880, 331451946967680, 23533088234705280, 1906180147011127680, 173462393378012618880 (list; graph; refs; listen; history; internal format)
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

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.

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) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 13 2009]

CROSSREFS

Sequence in context: A109834 A131451 A084012 * A177280 A173849 A154657

Adjacent sequences:  A062916 A062917 A062918 * A062920 A062921 A062922

KEYWORD

base,nonn,easy

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jul 02 2001

EXTENSIONS

More terms from Lior Manor (lior.manor(AT)gmail.com) and Larry Reeves (larryr(AT)acm.org), Jul 05 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 11:25 EST 2012. Contains 205777 sequences.