OFFSET
1,1
LINKS
Esther Hunt Tesar, Genus distribution of Ringel ladders, Discrete Mathematics 216.1-3 (2000): 235-252.
EXAMPLE
Triangle begins:
2, 14,
2, 38, 24,
2, 70, 184,
2, 118, 648, 256,
2, 198, 1656, 2240,
2, 342, 3752, 9728, 2560,
2, 614, 8152, 31168, 25600,
...
PROG
(PARI) T(n, k) = 2^(3*k+1)*binomial(n-k, k) + 2^(3*k)*binomial(n-k, k-1) + (2^(n+k) - 2^(3*k-3))*binomial(n-k+1, k-2) + (2^(n+k+1) - 2^(3*k-2))*binomial(n-k+1, k-1);
tabf(nn) = {for(n=1, nn, for(k=0, ceil((n+1)/2), print1(T(n, k), ", "); ); print(); ); }; \\ Michel Marcus, May 24 2018
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
N. J. A. Sloane, Feb 02 2018
EXTENSIONS
Corrected and extended by Michel Marcus, May 24 2018
STATUS
approved