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!)
A203423 a(n) = w(n+1)/(2*w(n)), where w=A203422. 2
-3, 24, -250, 3240, -50421, 917504, -19131876, 450000000, -11789738455, 340545503232, -10752962364222, 368510430439424, -13623365478515625, 540431955284459520, -22899384412078526344, 1032236014321051140096, -49323481720063219673451, 2490368000000000000000000, -132484966403310261255807810 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = (-1)^n*A053506(n+2)/2. - Steven Finch, Apr 16 2022
E.g.f.: -(1/(2*x^2))*( W(x)/(1 + W(x))^3 - 2*W(x)/(1 + W(x)) + W(x) + x^2), where W(x) = LambertW(x). - G. C. Greubel, Dec 07 2023
MATHEMATICA
(* First program *)
f[j_] := 1/(j + 1); z = 16;
v[n_] := Product[Product[f[k] - f[j], {j, 1, k - 1}], {k, 2, n}]
1/Table[v[n], {n, 1, z}] (* A203422 *)
Table[v[n]/(2 v[n + 1]), {n, 1, z}] (* this sequence *)
(* Second program *)
Table[(-1)^n*(n+1)*(n+2)^n/2, {n, 20}] (* G. C. Greubel, Dec 07 2023 *)
PROG
(Magma) [(-1)^n*(n+1)*(n+2)^n/2: n in [1..20]]; // G. C. Greubel, Dec 07 2023
(SageMath) [(-1)^n*(n+1)*(n+2)^n/2 for n in range(1, 21)] # G. C. Greubel, Dec 07 2023
CROSSREFS
Sequence in context: A361846 A365147 A080523 * A319754 A218301 A233833
KEYWORD
sign
AUTHOR
Clark Kimberling, Jan 02 2012
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 April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)