A176408 a(n) = (n+1)*(a(n-1) +a(n-2)) n>1, a(0)=1,a(1)=0.
1, 0, 3, 12, 75, 522, 4179, 37608, 376083, 4136910, 49642923, 645357996, 9035011947, 135525179202, 2168402867235, 36862848742992, 663531277373859, 12607094270103318
Offset: 0
Keywords
Examples
a(2)= 3*9-24=3, a(3)= 3*44-120=12, a(4)= 3*265-720=75, ...
Links
- Indranil Ghosh, Table of n, a(n) for n = 0..447
- Michael Wallner, A bijection of plane increasing trees with relaxed binary trees of right height at most one, arXiv:1706.07163 [math.CO], 2017, Table 2 on p. 13.
Programs
-
Maple
seq(3*floor(((n+2)!+1)/E) - (n+2)!,n=1..20);
Formula
Extensions
Data section corrected by Indranil Ghosh, Feb 15 2017
Comments