login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A203237
(n-1)-st elementary symmetric function of the first n terms of the upper Wythoff sequence, A001950.
2
1, 7, 59, 660, 9280, 148300, 2805900, 58575000, 1396365000, 37435710000, 1077585600000, 34227953760000, 1189257232800000, 43680491749440000, 1734759507499200000, 72342732649037760000, 3233001543062054400000
OFFSET
1,2
MATHEMATICA
f[k_] := k + Floor[GoldenRatio*k]
t[n_] := Table[f[k], {k, 1, n}]
a[n_] := SymmetricPolynomial[n - 1, t[n]]
Table[a[n], {n, 1, 18}] (* A203237 *)
t[16] (* A001950 *)
CROSSREFS
Cf. A203236.
Sequence in context: A135150 A077409 A192458 * A099347 A331709 A203174
KEYWORD
nonn
AUTHOR
Clark Kimberling, Dec 30 2011
STATUS
approved