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

A326998
a(n) = 1 + binomial(3*n-1, n) + binomial(3*n-1, n-1)*(binomial(2*n-1, n) + 1).
2
4, 5, 31, 365, 6271, 129130, 2877421, 66628441, 1578320767, 37983592076, 925196176906, 22754692780561, 564123212097901, 14079691134569845, 353428830512017081, 8915830309096530865, 225890912989184760703, 5744976464242932324976, 146603288011226858621356
OFFSET
0,1
MAPLE
a := n -> 1 + binomial(3*n-1, n) + binomial(3*n-1, n-1)*(binomial(2*n-1, n) + 1):
seq(a(n), n=0..19);
CROSSREFS
Cf. A327001 (column 3). Essentially the same as A309725.
Sequence in context: A224219 A128867 A262031 * A270286 A271803 A269810
KEYWORD
nonn
AUTHOR
Peter Luschny, Aug 13 2019
STATUS
approved