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

A304335
Sum of digits of (2*n-1)!!.
1
1, 1, 3, 6, 6, 18, 18, 18, 18, 36, 45, 45, 36, 63, 72, 72, 90, 90, 108, 108, 126, 108, 144, 144, 135, 144, 153, 180, 180, 171, 180, 198, 198, 189, 216, 243, 243, 234, 252, 225, 243, 261, 252, 297, 306, 333, 360, 324, 342, 342, 315, 360, 369, 378, 396, 387, 387, 414
OFFSET
0,3
LINKS
FORMULA
a(n) = A007953(A001147(n)).
MAPLE
a:= n-> add(i, i=convert(doublefactorial(2*n-1), base, 10)):
seq(a(n), n=0..60); # Alois P. Heinz, May 11 2018
PROG
(PARI) {a(n) = sumdigits((2*n)!/(n!*2^n))}
CROSSREFS
Sequence in context: A103463 A370154 A265026 * A223048 A319446 A181372
KEYWORD
nonn,base
AUTHOR
Seiichi Manyama, May 11 2018
STATUS
approved