login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141267 Concatenate first n double factorials in reverse order. 2
1, 21, 321, 8321, 158321, 48158321, 10548158321, 38410548158321, 94538410548158321, 384094538410548158321, 10395384094538410548158321, 4608010395384094538410548158321, 1351354608010395384094538410548158321 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n!!*10^floor(1+log_10(a(n-1))) + a(n-1), with a(1)=1.
MAPLE
P:=proc(i) local a, j, k, n; a:=1; print(1); for n from 2 by 1 to i do k:=n; j:=n-2; while j>0 do k:=k*j; j:=j-2; od; a:=k*10^floor(evalf(1+log10(a), 1000))+a; print(a); od; end: P(20);
MATHEMATICA
FromDigits/@(Flatten[IntegerDigits/@Reverse[#]]&/@Table[ Take[Range[20]!!, n], {n, 20}]) (* Harvey P. Dale, Sep 30 2011 *)
CROSSREFS
Sequence in context: A060554 A057610 A036737 * A346321 A016262 A001233
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Jun 20 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 19:56 EDT 2024. Contains 371916 sequences. (Running on oeis4.)