cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A238620 Number of partitions of n having population standard deviation >= 1.

This page as a plain text file.
%I A238620 #22 May 12 2023 12:16:53
%S A238620 0,0,0,1,1,3,5,10,15,23,33,52,68,94,132,180,239,318,412,543,693,885,
%T A238620 1131,1443,1803,2250,2808,3499,4321,5336,6552,8032,9799,11914,14456,
%U A238620 17528,21136,25458,30588,36699,43869,52422,62437,74290,88186,104527,123670
%N A238620 Number of partitions of n having population standard deviation >= 1.
%C A238620 Regarding "standard deviation" see Comments at A238616.
%F A238620 a(n) = A000041(n) - A238616(n).
%e A238620 There are 11 partitions of 6, whose standard deviations are given by these approximations:  0., 2., 1., 1.41421, 0., 0.816497, 0.866025, 0., 0.5, 0.4, 0, so that a(6) = 3.
%p A238620 b:= proc(n, i, m, s, c) `if`(n=0, `if`(s/c-(m/c)^2>=1, 1, 0),
%p A238620       `if`(i=1, b(0$2, m+n, s+n, c+n), add(b(n-i*j, i-1,
%p A238620        m+i*j, s+i^2*j, c+j), j=0..n/i)))
%p A238620     end:
%p A238620 a:= n-> b(n$2, 0$3):
%p A238620 seq(a(n), n=1..50);  # _Alois P. Heinz_, Mar 11 2014
%t A238620 z = 55; g[n_] := g[n] = IntegerPartitions[n]; s[t_] := s[t] = Sqrt[Sum[(t[[k]] - Mean[t])^2, {k, 1, Length[t]}]/Length[t]]
%t A238620 Table[Count[g[n], p_ /; s[p] < 1], {n, z}]   (*A238616*)
%t A238620 Table[Count[g[n], p_ /; s[p] <= 1], {n, z}]  (*A238617*)
%t A238620 Table[Count[g[n], p_ /; s[p] == 1], {n, z}]  (*A238618*)
%t A238620 Table[Count[g[n], p_ /; s[p] > 1], {n, z}]   (*A238619*)
%t A238620 Table[Count[g[n], p_ /; s[p] >= 1], {n, z}]  (*A238620*)
%t A238620 t[n_] := t[n] = N[Table[s[g[n][[k]]], {k, 1, PartitionsP[n]}]]
%t A238620 ListPlot[Sort[t[30]]] (*plot of st.dev's of partitions of 30*)
%t A238620 (* Second program: *)
%t A238620 b[n_, i_, m_, s_, c_] := b[n, i, m, s, c] = If[n == 0,
%t A238620      If[s/c - (m/c)^2 >= 1, 1, 0], If[i == 1, b[0, 0, m+n, s+n, c+n],
%t A238620      Sum[b[n - i*j, i - 1, m + i*j, s + i^2*j, c + j], {j, 0, n/i}]]];
%t A238620 a[n_] := b[n, n, 0, 0, 0];
%t A238620 Array[a, 50] (* _Jean-François Alcover_, Jun 03 2021, after _Alois P. Heinz_ *)
%Y A238620 Cf. A238616.
%K A238620 nonn,easy
%O A238620 1,6
%A A238620 _Clark Kimberling_, Mar 01 2014