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!)
A333937 Triangle read by rows: T(n, k) = (k-1)*n - binomial(n, 2) + floor((n-k)/2) + 1, transposed. 0
1, 1, 2, 2, 3, 4, 2, 5, 6, 7, 3, 6, 9, 10, 11, 3, 8, 11, 14, 15, 16, 4, 9, 14, 17, 20, 21, 22, 4, 11, 16, 21, 24, 27, 28, 29, 5, 12, 19, 24, 29, 32, 35, 36, 37, 5, 14, 21, 28, 33, 38, 41, 44, 45, 46, 6, 15, 24, 31, 38, 43, 48, 51, 54, 55, 56, 6, 17, 26, 35, 42, 49, 54, 59, 62, 65, 66, 67 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
P. Erdős and L. Moser, An extremal problem in graph theory, J. Austral. Math. Soc. 11 (1970), 42--47.
EXAMPLE
Triangle begins:
1,
1, 2,
2, 3, 4,
2, 5, 6, 7,
3, 6, 9, 10, 11,
3, 8, 11, 14, 15, 16,
4, 9, 14, 17, 20, 21, 22,
...
PROG
(PARI) T(n, k) = (k-1)*n - binomial(n, 2) + (n-k)\2 + 1;
matrix(7, 7, n, k, if (k>n, 0, T(k, n))) \\ to see the triangle
CROSSREFS
Sequence in context: A205703 A363100 A367467 * A325785 A207632 A175503
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Apr 11 2020
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)