login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A203152 (n-1)-st elementary symmetric function of {1, 2, 2, 3, 3, 4, 4, 5, 5, ..., floor(1+n/2)}. 5
1, 3, 8, 28, 96, 420, 1824, 9696, 51360, 322560, 2021760, 14670720, 106323840, 875992320, 7211151360, 66526064640, 613365903360, 6265340928000, 63970228224000, 716840699904000, 8030097782784000, 97954524315648000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
Let esf abbreviate "elementary symmetric function". Then
0th esf of {1}: 1;
1st esf of {1,2}: 1+2 = 3;
2nd esf of {1,2,2} is 1*2 + 1*2 + 2*2 = 8.
MAPLE
SymmPolyn := proc(L::list, n::integer)
local c, a, sel;
a :=0 ;
sel := combinat[choose](nops(L), n) ;
for c in sel do
a := a+mul(L[e], e=c) ;
end do:
a;
end proc:
A203152 := proc(n)
local k ;
L := [seq(floor(1+k/2), k=1..n)] ;
SymmPolyn(L, n-1) ;
end proc: # R. J. Mathar, Sep 23 2016
MATHEMATICA
f[k_] := Floor[(k + 2)/2]; t[n_] := Table[f[k], {k, 1, n}]
a[n_] := SymmetricPolynomial[n - 1, t[n]]
Table[a[n], {n, 1, 22}] (* A203152 *)
CROSSREFS
Cf. A203153.
Sequence in context: A148863 A148864 A148865 * A362645 A026627 A148866
KEYWORD
nonn
AUTHOR
Clark Kimberling, Dec 29 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 04:13 EDT 2024. Contains 371235 sequences. (Running on oeis4.)