The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A370553 a(n) is the numerator of the imaginary part of Product_{k=1..n} (1 + i/k) where i is the imaginary unit. 6
1, 3, 5, 5, 19, 35, 331, 65, 18265, 4433, 141349, 18863, 1035215, 14705, 9158903, 6702403, -34376687, -21392575, -33594289475, -2206770805, -4905856636525, -617315066615, -1713253866399725, -551582580432325, -51270656805872335, -180184164588301, -1630191679256007299 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = numerator of A231531(n)/n!. - Chai Wah Wu, Feb 22 2024
EXAMPLE
See A370551.
PROG
(PARI) a370553(n) = numerator(imag(prod(k=1, n, 1+I/k)))
(Python)
from math import factorial, gcd
from sympy.functions.combinatorial.numbers import stirling
def A370553(n): return (a:=sum(stirling(n+1, k<<1, kind=1)*(1 if k&1 else -1) for k in range((n+1>>1)+1)))//gcd(a, factorial(n)) # Chai Wah Wu, Feb 22 2024
CROSSREFS
Sequence in context: A079372 A055382 A165235 * A200771 A072624 A147976
KEYWORD
frac,sign,easy
AUTHOR
Hugo Pfoertner, Feb 22 2024
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 May 16 10:52 EDT 2024. Contains 372552 sequences. (Running on oeis4.)