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.

A203240 Real part of even numbered terms of the sequence s(n)=(n-1)-st elementary symmetric function of (i, 2i, 3i,...,ni).

This page as a plain text file.
%I A203240 #25 Oct 26 2016 16:16:50
%S A203240 1,-11,274,-13068,1026576,-120543840,19802759040,-4339163001600,
%T A203240 1223405590579200,-431565146817638400,186244810780170240000,
%U A203240 -96538966652493066240000,59190128811701203599360000,-42373564558110787183902720000
%N A203240 Real part of even numbered terms of the sequence s(n)=(n-1)-st elementary symmetric function of (i, 2i, 3i,...,ni).
%F A203240 a(n) = (-1)^(n+1)*(2*n - 1)!*Sum(i=1..2*n-1, 1/i). - _Arkadiusz Wesolowski_, Mar 25 2013
%F A203240 From _Anton Zakharov_, Oct 26 2016: (Start)
%F A203240 a(n) = (-1)^(n+1)*Sum_{k=1..n} A094310(2n-1,k).
%F A203240 (-1)^(n+1)*a(n) = A000254(2*n-1) (signed bisection of A000254). (End)
%e A203240 See A203239.
%p A203240 a := n -> (-1)^(n-1)*(2*n-1)!*harmonic(2*n-1):
%p A203240 seq(a(n), n = 1..14); # _Peter Luschny_, Oct 26 2016
%t A203240 f[k_] := k*I; t[n_] := Table[f[k], {k, 1, n}]
%t A203240 a[n_] := SymmetricPolynomial[n - 1, t[n]]
%t A203240 Table[a[n], {n, 1, 22}]
%t A203240 Table[-I*a[2 n], {n, 1, 22}]     (* A203239 *)
%t A203240 Table[a[2 n - 1], {n, 1, 22}]    (* A203240 *)
%t A203240 Table[(-1)^(n + 1)*(2*n - 1)!*HarmonicNumber[2*n - 1], {n, 14}] (* _Arkadiusz Wesolowski_, Mar 25 2013 *)
%Y A203240 Cf. A203239, A094310, A000254.
%K A203240 sign
%O A203240 1,2
%A A203240 _Clark Kimberling_, Dec 30 2011