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

A368793
a(n) = (3*n-2)!!! * Sum_{k=0..n} k/(3*k-2)!!!.
1
0, 1, 6, 45, 454, 5907, 94518, 1795849, 39508686, 987717159, 27656080462, 857338494333, 29149508807334, 1078531825871371, 43141273034854854, 1855074740498758737, 85333438062942901918, 4181338465084202193999, 217429600184378514087966
OFFSET
0,3
FORMULA
a(0) = 0; a(n) = (3*n-2)*a(n-1) + n.
PROG
(PARI) a007559(n) = prod(k=1, n, 3*k-2);
a(n) = a007559(n)*sum(k=0, n, k/a007559(k));
CROSSREFS
Sequence in context: A331726 A084064 A186925 * A294642 A346682 A109516
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 05 2024
STATUS
approved