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

A081301
Subdiagonal of square array A081297.
6
1, 1, 13, 41, 991, 5461, 194713, 1545265, 73022131, 758924981, 44709567013, 575279386969, 40614439994311, 623479972408021, 51316625644764721, 915589327332039905, 86090052046429522747, 1750836276286883890741
OFFSET
0,3
LINKS
FORMULA
a(n) = ((n+2)^(n+1)-(-(n+1))^(n+1))/(2*n+3).
MATHEMATICA
Table[((n + 2)^(n + 1) - (-(n + 1))^(n + 1)) / (2 n + 3), {n, 0, 20}] (* Vincenzo Librandi, Aug 08 2013 *)
PROG
(Magma) [((n+2)^(n+1)-(-(n+1))^(n+1))/(2*n+3):n in [0..20]]; // Vincenzo Librandi, Aug 08 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Mar 17 2003
STATUS
approved