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 A024402 #21 Jul 07 2019 02:49:16 %S A024402 3,20,63,150,304,552,926,1460,2197,3180,4460,6090,8128,10639,13689, %T A024402 17350,21699,26817,32790,39706,47662,56755,67090,78774,91919,106644, %U A024402 123069,141320,161528,183828,208360,235266,264697,296804,331746,369683,410784 %N A024402 [ (4th elementary symmetric function of S(n))/(2nd elementary symmetric function of S(n)) ], where S(n) = {first n+3 positive integers congruent to 2 mod 3}. %F A024402 a(n) = floor(A024393(n) / A024391(n + 2)). - _Sean A. Irvine_, Jul 07 2019 %t A024402 S[n_] := 3 Range[0, n + 2] + 2; Table[Floor[SymmetricPolynomial[4, S@ n]/SymmetricPolynomial[2, S@ n]], {n, 37}] (* _Michael De Vlieger_, Dec 10 2015 *) %Y A024402 Cf. A024391, A024393. %K A024402 nonn %O A024402 1,1 %A A024402 _Clark Kimberling_