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.

A368986 a(n) = sum of the origin-to-boundary graph-distances of all partitions of n.

This page as a plain text file.
%I A368986 #4 Jan 12 2024 16:33:17
%S A368986 0,1,2,4,8,12,21,32,50,73,107,152,219,302,419,567,771,1027,1374,1806,
%T A368986 2375,3083,3999,5136,6597,8398,10676,13477,16981,21260,26584,33057,
%U A368986 41049,50738,62605,76930,94374,115330,140704,171106,207732,251460,303919,366335,440880,529298
%N A368986 a(n) = sum of the origin-to-boundary graph-distances of all partitions of n.
%C A368986 The origin-to-boundary graph-distance (see A325188) is the side length of the maximum triangular partition contained inside the Ferrer's diagram of the partition. a(n) is the sum of the side lengths over all partitions of n.
%F A368986 a(n) = Sum_{k=1..n} k*A325188(n,k).
%o A368986 (PARI) a(n)={my(s=0); forpart(p=n, my(w=#p); for(i=1, #p, w=min(w, #p-i+p[i])); s += w); s}
%Y A368986 Cf. A325188, A325189, A325200.
%K A368986 nonn
%O A368986 0,3
%A A368986 _Andrew Howroyd_, Jan 12 2024