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.

Showing 1-1 of 1 results.

A282567 Imaginary part of A000178(n) * Sum_{k=0..n} i^k/k!, where i = sqrt(-1).

Original entry on oeis.org

0, 1, 2, 10, 240, 29088, 20943360, 105529651200, 4254955536384000, 1544043321627770880000, 5603024405522854969344000000, 223654797931768113135574056960000000, 107131006056993617020920990202331136000000000, 667107003169139201955908457896071963607040000000000000
Offset: 0

Views

Author

Daniel Suteu, Feb 18 2017

Keywords

Examples

			For n = 4, a(4) = 240, which is the imaginary part of A000178(4)*(1/0! + i/1! - 1/2! - i/3! + 1/4!) = 156+240*i.
		

Crossrefs

The corresponding real part is A282564.

Programs

  • PARI
    a(n) = imag(prod(k=0, n, k!) * sum(k=0, n, I^k/k!));

Formula

a(n) ~ sin(1) * A000178(n).
a(0) = 0, a(n) = n!*a(n-1) + A000178(n-1)*sin(Pi/2*n).
Lim_{n->infinity} a(n)/G(n+2) = sin(1), where G(z) is the Barnes G-function.
Showing 1-1 of 1 results.