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

%I #27 Jun 13 2022 19:43:17

%S 1,1,2,3,5,7,11,15,22,29,39,50,66,83,104,127,157,188,225,265,312,359,

%T 418,479,547,620,700,786,884,987,1094,1214,1348,1479,1627,1779,1945,

%U 2122,2313,2505,2719,2934,3161,3412,3666,3932,4218,4511,4820,5140,5477,5825

%N 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.

%C 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.

%H Alois P. Heinz, <a href="/A354468/b354468.txt">Table of n, a(n) for n = 0..800</a>

%H Noah A. Rosenberg and Donna M. Zulman, <a href="https://doi.org/10.1111/1475-6773.13263">Measures of care fragmentation: mathematical insights from population genetics</a>, Health Services Research 55 (2020), 318-327.

%e For n=4 the a(4)=5 ordered pairs are (4,16), (3,10), (2,8), (2,6), and (1,4).

%p b:= proc(n, i) option remember; `if`(n=0 or i=1, {n},

%p {b(n, i-1)[], map(x-> x+i^2, b(n-i, min(n-i, i)))[]})

%p end:

%p a:= n-> add(nops(b(n-i, min(n-i, i))), i=signum(n)..n):

%p seq(a(n), n=0..60); # _Alois P. Heinz_, Jun 02 2022

%t b[n_, i_] := b[n, i] = If[n == 0 || i == 1, {n},

%t Union@Flatten@{b[n, i-1], #+i^2& /@ b[n-i, Min[n-i, i]]}];

%t a[n_] := Sum[Length[b[n-i, Min[n-i, i]]], {i, Sign[n], n}];

%t Table[a[n], {n, 0, 60}] (* _Jean-François Alcover_, Jun 05 2022, after _Alois P. Heinz_ *)

%Y Bounded below by A069999. Bounded above by A000041.

%Y Cf. A354800.

%K nonn

%O 0,3

%A _Noah A Rosenberg_, Jun 02 2022

%E a(16)-a(51) from _Alois P. Heinz_, Jun 02 2022

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 20 01:16 EDT 2024. Contains 375310 sequences. (Running on oeis4.)