cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A304335 Sum of digits of (2*n-1)!!.

Original entry on oeis.org

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

Views

Author

Seiichi Manyama, May 11 2018

Keywords

Crossrefs

Programs

  • 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
  • PARI
    {a(n) = sumdigits((2*n)!/(n!*2^n))}

Formula

a(n) = A007953(A001147(n)).