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!)
A087761 Expansion of (1-x)^(1/(x-1)). 17
1, 1, 4, 21, 140, 1130, 10674, 115206, 1396016, 18739080, 275712840, 4408612560, 76070179272, 1408041937848, 27816773482848, 583970117197320, 12978149959718400, 304310928180279360, 7506092106055537344 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} |Stirling1(n, k)|*A000248(k).
From Paul D. Hanna, Mar 17 2010: (Start)
E.g.f.: exp( Sum_{n>=1} H(n)*x^n ) where H(n) is the n-th harmonic number;
a(n) = (n-1)!*Sum_{k=0..n-1} (n-k)*H(n-k)*a(k)/k! for n>0 with a(0)=1. (End)
Empirical: a(n) = Sum_{i=0..n} binomial(n,i)*A005727(i)*(n-1)!/(i-1)! for n>0. - John M. Campbell, Dec 13 2016
MATHEMATICA
Table[Sum[BellY[n, k, Table[m! HarmonicNumber[m], {m, n}]], {k, 0, n}], {n, 0, 20}] (* Vladimir Reshetnikov, Nov 09 2016 *)
PROG
(PARI) a(n)=if(n==0, 1, (n-1)!*sum(k=0, n-1, (n-k)*sum(j=1, n-k, 1/j)*a(k)/k!)) \\ Paul D. Hanna, Mar 17 2010; corrected Mar 19 2010
CROSSREFS
Sequence in context: A349534 A222058 A265174 * A245503 A120368 A053482
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Oct 02 2003
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 19 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)