OFFSET
0,5
COMMENTS
From Gus Wiseman, Apr 19 2023: (Start)
Appears to be the number of nonempty subsets of {1,...,n} with median k, where the median of a multiset is either the middle part (for odd length), or the average of the two middle parts (for even length). For example, row n = 5 counts the following subsets:
{1} {2} {3} {4} {5}
{1,3} {1,5} {3,5}
{1,2,3} {2,4} {1,4,5}
{1,2,4} {1,3,4} {2,4,5}
{1,2,5} {1,3,5} {3,4,5}
{2,3,4}
{2,3,5}
{1,2,4,5}
{1,2,3,4,5}
Including half-steps gives A231147.
For mean instead of median we have A327481.
(End)
LINKS
G. C. Greubel, Table of n, a(n) for the first 50 rows, flattened
FORMULA
G.f.: 1/(1-(1+y)*x)/(1-y*x^2). - Vladeta Jovovic, Oct 12 2003
EXAMPLE
Triangle begins:
1
1 1
1 3 1
1 4 4 1
1 5 9 5 1
1 6 14 14 6 1
1 7 20 29 20 7 1
1 8 27 49 49 27 8 1
1 9 35 76 99 76 35 9 1
1 10 44 111 175 175 111 44 10 1
1 11 54 155 286 351 286 155 54 11 1
1 12 65 209 441 637 637 441 209 65 12 1
MATHEMATICA
CoefficientList[CoefficientList[Series[1/(1 - (1 + y)*x)/(1 - y*x^2), {x, 0, 10}, {y, 0, 10}], x], y] // Flatten (* G. C. Greubel, Oct 10 2017 *)
CROSSREFS
KEYWORD
AUTHOR
Martin Hecko (bigusm(AT)interramp.com)
EXTENSIONS
More terms from James A. Sellers
STATUS
approved