Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A353191 Expansion of e.g.f. 1/(1 - Sum_{k>=1} mu(k) * x^k / k), where mu() is the Moebius function (A008683). 1
1, 1, 1, -2, -22, -134, -418, 1044, 35352, 371256, 2662872, 2256, -348450672, -7383337584, -85166363280, -224652273504, 17983453809024, 500248545941376, 7414246148833152, 13911378371907840, -2620344425592796416, -85017815816225598720, -1321651042532303189760 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (k-1)! * mu(k) * binomial(n,k) * a(n-k).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[(k - 1)! * MoebiusMu[k] * Binomial[n, k] * a[n - k], {k, 1, n}]; Array[a, 23, 0] (* Amiram Eldar, Apr 30 2022 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-sum(k=1, N, moebius(k)*x^k/k))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (j-1)!*moebius(j)*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A255866 A330900 A356341 * A062180 A244719 A084399
KEYWORD
sign
AUTHOR
Seiichi Manyama, Apr 29 2022
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 August 18 19:11 EDT 2024. Contains 375273 sequences. (Running on oeis4.)