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!)
A354468 Number of possible ordered pairs (n_1, S) where (n_1, n_2, ..., n_k) is a partition of n, n_1 is the largest element of the partition, and S = Sum_{j=1..k} n_j^2. 3
1, 1, 2, 3, 5, 7, 11, 15, 22, 29, 39, 50, 66, 83, 104, 127, 157, 188, 225, 265, 312, 359, 418, 479, 547, 620, 700, 786, 884, 987, 1094, 1214, 1348, 1479, 1627, 1779, 1945, 2122, 2313, 2505, 2719, 2934, 3161, 3412, 3666, 3932, 4218, 4511, 4820, 5140, 5477, 5825 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
In categorical data with a sample of size n distributed over at least 1 and at most n distinct categorical types, if a dataset is summarized by an ordered pair of two numbers -- the number of observations of the most frequent type and the sum of squares of the frequencies of all types -- then a(n) gives the number of distinguishable ordered pairs across all possible datasets.
LINKS
Noah A. Rosenberg and Donna M. Zulman, Measures of care fragmentation: mathematical insights from population genetics, Health Services Research 55 (2020), 318-327.
EXAMPLE
For n=4 the a(4)=5 ordered pairs are (4,16), (3,10), (2,8), (2,6), and (1,4).
MAPLE
b:= proc(n, i) option remember; `if`(n=0 or i=1, {n},
{b(n, i-1)[], map(x-> x+i^2, b(n-i, min(n-i, i)))[]})
end:
a:= n-> add(nops(b(n-i, min(n-i, i))), i=signum(n)..n):
seq(a(n), n=0..60); # Alois P. Heinz, Jun 02 2022
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0 || i == 1, {n},
Union@Flatten@{b[n, i-1], #+i^2& /@ b[n-i, Min[n-i, i]]}];
a[n_] := Sum[Length[b[n-i, Min[n-i, i]]], {i, Sign[n], n}];
Table[a[n], {n, 0, 60}] (* Jean-François Alcover, Jun 05 2022, after Alois P. Heinz *)
CROSSREFS
Bounded below by A069999. Bounded above by A000041.
Cf. A354800.
Sequence in context: A242695 A319473 A085894 * A309194 A330640 A319474
KEYWORD
nonn
AUTHOR
Noah A Rosenberg, Jun 02 2022
EXTENSIONS
a(16)-a(51) from Alois P. Heinz, Jun 02 2022
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 August 19 23:12 EDT 2024. Contains 375310 sequences. (Running on oeis4.)