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.
%I A258360 #7 Dec 11 2020 07:30:46 %S A258360 2310,2730,7860,15606,35594,67255,120061,201324,364479,592991,1004771, %T A258360 1530056,2444073,3691392,5610179,8334486,12213775,17529361,25187765, %U A258360 35345858,49999364,68516285,94223007,127478773,172613052,230362430,305639795,401637665,527011287 %N A258360 Sum over all partitions lambda of n into 5 distinct parts of Product_{i:lambda} prime(i). %H A258360 Alois P. Heinz, <a href="/A258360/b258360.txt">Table of n, a(n) for n = 15..1000</a> %p A258360 g:= proc(n, i) option remember; convert(series(`if`(n=0, 1, %p A258360 `if`(i<1, 0, add(g(n-i*j, i-1)*(ithprime(i)*x)^j %p A258360 , j=0..min(1, n/i)))), x, 6), polynom) %p A258360 end: %p A258360 a:= n-> coeff(g(n$2), x, 5): %p A258360 seq(a(n), n=15..60); %t A258360 g[n_, i_] := g[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[g[n - i j, i - 1] (Prime[i] x)^j, {j, 0, Min[1, n/i]}]]]; %t A258360 a[n_] := Coefficient[g[n, n], x, 5]; %t A258360 a /@ Range[15, 60] (* _Jean-François Alcover_, Dec 11 2020, after _Alois P. Heinz_ *) %Y A258360 Column k=5 of A258323. %Y A258360 Cf. A000040. %K A258360 nonn %O A258360 15,1 %A A258360 _Alois P. Heinz_, May 27 2015