login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A158886 a(n) = (n+1)^n * n! * C(1/(n+1), n). 0
1, 1, -2, 21, -504, 21505, -1432080, 137227545, -17893715840, 3047775608241, -657209398809600, 175036741783305325, -56436686113876992000, 21667473499647065000625, -9768377272589156352395264 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

FORMULA

a(n) = Product_{k=0..n-1} (1 - k*(n+1)) for n>0 with a(0)=1.

a(n) = Coefficient of x^n/(n!*(n+1)^n) in (1+x)^(1/(n+1)).

EXAMPLE

a(1) = 1, a(2) = 1*(-2), a(3) = 1*(-3)*(-7), a(4) = 1*(-4)*(-9)*(-14).

PROG

(PARI) a(n)=(n+1)^n*n!*binomial(1/(n+1), n)

(PARI) a(n)=if(n==0, 1, prod(k=0, n-1, 1-k*(n+1)))

CROSSREFS

Cf. A158887.

Sequence in context: A192666 A090451 A199747 * A092957 A171107 A195736

Adjacent sequences:  A158883 A158884 A158885 * A158887 A158888 A158889

KEYWORD

sign

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), May 01 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 07:42 EST 2012. Contains 205717 sequences.