A295739
Expansion of e.g.f. exp(Sum_{k>=1} d(k)*x^k/k!), where d(k) is the number of divisors of k (A000005).
Original entry on oeis.org
1, 1, 3, 9, 36, 158, 802, 4434, 26978, 176637, 1243528, 9316519, 74065506, 621187700, 5480130494, 50662481722, 489552042241, 4931215686119, 51668848043427, 561981734692781, 6333882472789914, 73850048237680936, 889461218944314524, 11051067390893340510
Offset: 0
- Seiichi Manyama, Table of n, a(n) for n = 0..553
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, arXiv:math/0205301 [math.CO], 2002; Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
- N. J. A. Sloane, Transforms
- Eric Weisstein's World of Mathematics, Exponential Transform
-
a:=series(exp(add(tau(k)*x^k/k!,k=1..100)),x=0,24): seq(n!*coeff(a,x,n),n=0..23); # Paolo P. Lava, Mar 27 2019
-
nmax = 23; CoefficientList[Series[Exp[Sum[DivisorSigma[0, k] x^k/k!, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] DivisorSigma[0, k] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 23}]
A294361
E.g.f.: exp(Sum_{n>=1} sigma(n) * x^n).
Original entry on oeis.org
1, 1, 7, 43, 409, 3841, 50431, 648187, 10347793, 170363809, 3200390551, 62855417131, 1371594161257, 31147757782753, 768384638386639, 19814802390611131, 545309251861956001, 15661899520801953217, 475833949719419469223, 15042718034104688144299
Offset: 0
E.g.f.: exp(Sum_{n>=1} sigma_k(n) * x^n):
A294363 (k=0), this sequence (k=1),
A294362 (k=2).
-
nmax = 20; CoefficientList[Series[Exp[Sum[DivisorSigma[1, k]*x^k, {k, 1, nmax}]], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Sep 04 2018 *)
-
N=66; x='x+O('x^N); Vec(serlaplace(exp(sum(k=1, N, sigma(k)*x^k))))
A274760
The multinomial transform of A001818(n) = ((2*n-1)!!)^2.
Original entry on oeis.org
1, 1, 10, 478, 68248, 21809656, 13107532816, 13244650672240, 20818058883902848, 48069880140604832128, 156044927762422185270016, 687740710497308621254625536, 4000181720339888446834235653120, 29991260979682976913756629498334208
Offset: 0
Some a(n) formulas, see A036039:
a(0) = 1
a(1) = 1*x(1)
a(2) = 1*x(2) + 1*x(1)^2
a(3) = 2*x(3) + 3*x(1)*x(2) + 1*x(1)^3
a(4) = 6*x(4) + 8*x(1)*x(3) + 3*x(2)^2 + 6*x(1)^2*x(2) + 1*x(1)^4
a(5) = 24*x(5) + 30*x(1)*x(4) + 20*x(2)*x(3) + 20*x(1)^2*x(3) + 15*x(1)*x(2)^2 + 10*x(1)^3*x(2) + 1*x(1)^5
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, 1995, pp. 18-23.
- M. Bernstein and N. J. A. Sloane, Some Canonical Sequences of Integers, arXiv:math/0205301 [math.CO], 2002; Linear Algebra and its Applications, Vol. 226-228 (1995), pp. 57-72. Erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
- N. J. A. Sloane, Transforms.
- Eric W. Weisstein MathWorld, Exponential Transform.
-
nmax:= 13: b := proc(n): (doublefactorial(2*n-1))^2 end: a:= proc(n) option remember: if n=0 then 1 else add(((n-1)!/(n-k)!) * b(k) * a(n-k), k=1..n) fi: end: seq(a(n), n = 0..nmax); # End first MNL program.
nmax:=13: b := proc(n): (doublefactorial(2*n-1))^2 end: t1 := exp(add(b(n)*x^n/n, n = 1..nmax+1)): t2 := series(t1, x, nmax+1): a := proc(n): n!*coeff(t2, x, n) end: seq(a(n), n = 0..nmax); # End second MNL program.
nmax:=13: b := proc(n): (doublefactorial(2*n-1))^2 end: f := series(log(1+add(s(n)*x^n/n!, n=1..nmax)), x, nmax+1): d := proc(n): n*coeff(f, x, n) end: a(0) := 1: a(1) := b(1): s(1) := b(1): for n from 2 to nmax do s(n) := solve(d(n)-b(n), s(n)): a(n):=s(n): od: seq(a(n), n=0..nmax); # End third MNL program.
-
b[n_] := (2*n - 1)!!^2;
a[0] = 1; a[n_] := a[n] = Sum[((n-1)!/(n-k)!)*b[k]*a[n-k], {k, 1, n}];
Table[a[n], {n, 0, 13}] (* Jean-François Alcover, Nov 17 2017 *)
A274805
The logarithmic transform of sigma(n).
Original entry on oeis.org
1, 2, -3, -6, 45, 11, -1372, 4298, 59244, -573463, -2432023, 75984243, -136498141, -10881169822, 100704750342, 1514280063802, -36086469752977, -102642110690866, 11883894518252419, -77863424962770751, -3705485804176583500, 71306510264347489177
Offset: 1
Some a(n) formulas, see A127671:
a(0) = undefined
a(1) = 1*x(1)
a(2) = 1*x(2) - x(1)^2
a(3) = 1*x(3) - 3*x(1)*x(2) + 2*x(1)^3
a(4) = 1*x(4) - 4*x(1)*x(3) - 3*x(2)^2 + 12*x(1)^2*x(2) - 6*x(1)^4
a(5) = 1*x(5) - 5*x(1)*x(4) - 10*x(2)*x(3) + 20*x(1)^2*x(3) + 30*x(1)*x(2)^2 - 60*x(1)^3*x(2) + 24*x(1)^5
- Frank Harary and Edgar M. Palmer, Graphical Enumeration, 1973.
- Robert James Riddell, Contributions to the theory of condensation, Dissertation, University of Michigan, Ann Arbor, 1951.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, 1995, pp. 18-23.
- Alois P. Heinz, Table of n, a(n) for n = 1..451
- M. Bernstein and N. J. A. Sloane, Some Canonical Sequences of Integers, Linear Algebra and its Applications, Vol. 226-228 (1995), pp. 57-72. Erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
- N. J. A. Sloane, Transforms.
- Eric W. Weisstein MathWorld, Logarithmic Transform.
Cf.
A112005,
A007553,
A062740,
A007447,
A062738,
A033464,
A116652,
A002031,
A003704,
A003707,
A155585,
A000142,
A226968.
-
nmax:=22: with(numtheory): b := proc(n): sigma(n) end: a:= proc(n) option remember; b(n) - add(k*binomial(n, k)*b(n-k)*a(k), k=1..n-1)/n: end: seq(a(n), n=1..nmax); # End first LOG program.
nmax:=22: with(numtheory): b := proc(n): sigma(n) end: t1 := log(1 + add(b(n)*x^n/n!, n=1..nmax+1)): t2 := series(t1, x, nmax+1): a := proc(n): n!*coeff(t2, x, n) end: seq(a(n), n=1..nmax); # End second LOG program.
nmax:=22: with(numtheory): b := proc(n): sigma(n) end: f := series(exp(add(r(n)*x^n/n!, n=1..nmax+1)), x, nmax+1): d := proc(n): n!*coeff(f, x, n) end: a(1):=b(1): r(1):= b(1): for n from 2 to nmax+1 do r(n) := solve(d(n)-b(n), r(n)): a(n):=r(n): od: seq(a(n), n=1..nmax); # End third LOG program.
-
a[1] = 1; a[n_] := a[n] = DivisorSigma[1, n] - Sum[k*Binomial[n, k] * DivisorSigma[1, n-k]*a[k], {k, 1, n-1}]/n; Table[a[n], {n, 1, 22}] (* Jean-François Alcover, Feb 27 2017 *)
-
N=33; x='x+O('x^N); Vec(serlaplace(log(1+sum(n=1,N,sigma(n)*x^n/n!)))) \\ Joerg Arndt, Feb 27 2017
A300011
Expansion of e.g.f. exp(Sum_{k>=1} phi(k)*x^k/k!), where phi() is the Euler totient function (A000010).
Original entry on oeis.org
1, 1, 2, 6, 20, 80, 362, 1820, 10084, 60522, 391864, 2714514, 20001700, 156107224, 1284705246, 11112088358, 100698613720, 953478331288, 9410963022318, 96614921664444, 1029705968813656, 11373102766644372, 129972789566984682, 1534638410054873892, 18696544357738885720
Offset: 0
E.g.f.: A(x) = 1 + x/1! + 2*x^2/2! + 6*x^3/3! + 20*x^4/4! + 80*x^5/5! + 362*x^6/6! + 1820*x^7/7! + ...
-
a:= proc(n) option remember; `if`(n=0, 1, add(a(n-j)*
binomial(n-1, j-1)*numtheory[phi](j), j=1..n))
end:
seq(a(n), n=0..25); # Alois P. Heinz, Mar 09 2018
-
nmax = 24; CoefficientList[Series[Exp[Sum[EulerPhi[k] x^k/k!, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = Sum[EulerPhi[k] Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 24}]
-
a(n) = if(n==0, 1, sum(k=1, n, eulerphi(k)*binomial(n-1, k-1)*a(n-k))); \\ Seiichi Manyama, Feb 27 2022
A340904
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * sigma_1(k) * a(n-k).
Original entry on oeis.org
1, 1, 5, 28, 225, 2206, 26174, 361278, 5704401, 101297701, 1998893240, 43386854622, 1027353587730, 26353742447280, 728030940612638, 21548668265211778, 680330296613877761, 22821706122361385354, 810587673640374442445, 30390159250481750866640
Offset: 0
-
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] DivisorSigma[1, k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 19}]
nmax = 19; CoefficientList[Series[1/(1 - Sum[Sum[i x^(i j)/(i j)!, {j, 1, nmax}], {i, 1, nmax}]), {x, 0, nmax}], x] Range[0, nmax]!
-
my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-sum(k=1, N, sigma(k)*x^k/k!)))) \\ Seiichi Manyama, Mar 29 2022
-
a(n) = if(n==0, 1, sum(k=1, n, sigma(k)*binomial(n, k)*a(n-k))); \\ Seiichi Manyama, Mar 29 2022
A275593
Shifts 2 places left under MNL transform.
Original entry on oeis.org
1, 1, 1, 2, 6, 30, 270, 5100, 229380, 27535260, 9496469340, 10086965678520, 34571745136244520, 403054252638271664040, 16565160940382442188713320, 2510059126960200448967150682000, 1444160075122431073529236697462766000
Offset: 1
- M. Bernstein and N. J. A. Sloane, Some Canonical Sequences of Integers, Linear Algebra and its Applications, Vol. 226-228 (1995), pp. 57-72. Erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
-
mnltr:= proc(p) local g; g:= proc(n) option remember; `if` (n=0, 1, add(((n-1)!/(n-k)!)*p(k) *g(n-k), k=1..n)): end: end: d := mnltr(c): c := n->`if`(n<=2, 1, d(n-2)): A275593 := n -> c(n): seq(A275593(n), n=1..16);
-
mnltr[p_] := Module[{g}, g[n_] := g[n] = If[n == 0, 1, Sum[((n-1)!/(n-k)!)* p[k]*g[n-k], {k, 1, n}]]; g]; d = mnltr[a]; a[n_] := If[n <= 2, 1, d[n-2] ]; Array[a, 17] (* Jean-François Alcover, Nov 07 2017, translated from Maple *)
A275594
Shifts 3 places left under MNL transform.
Original entry on oeis.org
1, 1, 1, 1, 2, 6, 24, 144, 1464, 26808, 935184, 67404816, 10401844896, 3508019017056, 2732681228689152, 5018025242941566336, 21914759744001662937984, 238559201308551667344338304, 6565759935393013059564090526464
Offset: 1
- M. Bernstein and N. J. A. Sloane, Some Canonical Sequences of Integers Linear Algebra and its Applications, Vol. 226-228 (1995), pp. 57-72. Erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
-
mnltr:= proc(p) local g; g:= proc(n) option remember; `if` (n=0, 1, add(((n-1)!/(n-k)!)*p(k) *g(n-k), k=1..n)): end: end: d := mnltr(c): c := n->`if`(n<=3, 1, d(n-3)): A275594 := n-> c(n): seq(A275594(n), n=1..19);
-
mnltr[p_] := Module[{g}, g[n_] := g[n] = If [n == 0, 1, Sum[((n-1)!/(n-k)!) *p[k]*g[n-k], {k, 1 n}]]; g]; d = mnltr[c]; c [n_] := If[n <= 3, 1, d[n - 3]]; A275594[n_] := c[n]; Table[A275594[n], {n, 1, 19}] (* Jean-François Alcover, Jul 22 2017, translated from Maple *)
A338871
Triangle T(n,k) defined by Sum_{k=1..n} T(n,k)*u^k*x^n/n! = exp(Sum_{n>0} u*sigma(n)*x^n/n!).
Original entry on oeis.org
1, 3, 1, 4, 9, 1, 7, 43, 18, 1, 6, 155, 175, 30, 1, 12, 511, 1230, 485, 45, 1, 8, 1442, 7231, 5600, 1085, 63, 1, 15, 4131, 37870, 52381, 18550, 2114, 84, 1, 13, 10323, 181063, 426006, 253281, 50022, 3738, 108, 1, 18, 28171, 818760, 3128245, 2956065, 937587, 116760, 6150, 135, 1
Offset: 1
exp(Sum_{n>0} u*sigma(n)*x^n/n!) = 1 + u*x + (3*u+u^2)*x^2/2! + (4*u+9*u^2+u^3)*x^3/3! + ... .
Triangle begins:
1;
3, 1;
4, 9, 1;
7, 43, 18, 1;
6, 155, 175, 30, 1;
12, 511, 1230, 485, 45, 1;
8, 1442, 7231, 5600, 1085, 63, 1;
15, 4131, 37870, 52381, 18550, 2114, 84, 1;
...
-
T[n_, 0] := Boole[n == 0]; T[n_, k_] := T[n, k] = Sum[Boole[j > 0] * Binomial[n - 1, j - 1] * DivisorSigma[1, j] * T[n - j, k - 1], {j, 0, n - k + 1}]; Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* Amiram Eldar, Nov 13 2020 *)
-
a(n) = if(n<1, 0, sigma(n));
T(n, k) = if(k==0, 0^n, sum(j=0, n-k+1, binomial(n-1, j-1)*a(j)*T(n-j, k-1)))
A352694
Expansion of e.g.f. exp(Sum_{k>=1} sigma_2(k) * x^k/k!).
Original entry on oeis.org
1, 1, 6, 26, 167, 1157, 9372, 82742, 806872, 8487255, 96086764, 1159845766, 14866684968, 201266031865, 2867695938970, 42849364911878, 669517721182731, 10910196881874549, 184997231064875867, 3257297876661453487, 59443905364431491367, 1122496527274459462803
Offset: 0
-
my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, sigma(k, 2)*x^k/k!))))
-
a(n) = if(n==0, 1, sum(k=1, n, sigma(k, 2)*binomial(n-1, k-1)*a(n-k)));
Showing 1-10 of 11 results.
Comments