OFFSET
1,1
COMMENTS
The number of rhyme schemes for a stanza of n+1 lines with m rhyming syllables in its first n lines.
REFERENCES
Suggested by R. K. Guy, Mar 11, 2002.
LINKS
Stephen Pollard, C.S. Peirce and the Bell Numbers, Mathematics Magazine, Vol. 76 (2003), pp. 99-106.
FORMULA
T(n, m) = (m+1)*S2(n, m).
EXAMPLE
Triangle begins:
2;
2, 3;
2, 9, 4;
2, 21, 24, 5;
2, 45, 100, 50, 6;
...
PROG
(PARI) T(n, m) = stirling(n, m, 2)*(m+1);
tabl(nn) = for(n=1, nn, for (k=1, n, print1(T(n, m), ", ")); print); \\ Michel Marcus, Sep 21 2017
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Apr 10 2002
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Jul 01 2002
STATUS
approved