login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A107972 Triangle read by rows: T(n,k) = (k+1)(k+2)(n+2)(3n-2k+3)/12 for 0<=k<=n. 1
1, 3, 6, 6, 14, 20, 10, 25, 40, 50, 15, 39, 66, 90, 105, 21, 56, 98, 140, 175, 196, 28, 76, 136, 200, 260, 308, 336, 36, 99, 180, 270, 360, 441, 504, 540, 45, 125, 230, 350, 475, 595, 700, 780, 825, 55, 154, 286, 440, 605, 770, 924, 1056, 1155, 1210, 66, 186, 348 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Kekulé numbers for certain benzenoids. Column 0 yields the triangular numbers (A000217). Row sums yield A006414. T(n,n) = A002415(n+2).
REFERENCES
S. J. Cyvin and I. Gutman, Kekulé structures in benzenoid hydrocarbons, Lecture Notes in Chemistry, No. 46, Springer, New York, 1988 (p. 237; K{B(n,2,l)}).
LINKS
EXAMPLE
Triangle begins:
1;
3,6;
6,14,20;
10,25,40,50;
MAPLE
T:=proc(n, k) if k<=n then (k+1)*(k+2)*(n+2)*(3*n-2*k+3)/12 else 0 fi end: for n from 0 to 10 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
CROSSREFS
Sequence in context: A240250 A239424 A119306 * A238775 A269525 A341885
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Jun 12 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)