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

A083082
First subdiagonal of number array A083075.
6
1, 5, 61, 1065, 23801, 650893, 21120373, 794552657, 34040573425, 1637411510421, 87420145670573, 5131440522974329, 328542298690792681, 22789709877615373085, 1702810951672313083621, 136361486383932674632353
OFFSET
0,2
LINKS
FORMULA
a(n) = ((n+1)*(2n+5)^n + 1)/(n+2).
MATHEMATICA
Table[((n+1)(2n+5)^n+1)/(n+2), {n, 0, 20}] (* Harvey P. Dale, Oct 06 2019 *)
PROG
(Magma) [((n+1)*(2*n+5)^n+1)/(n+2): n in [0..20]]; // Vincenzo Librandi, Nov 12 2011
CROSSREFS
Sequence in context: A134282 A146760 A294024 * A213110 A298695 A352238
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Apr 23 2003
STATUS
approved