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-6 of 6 results.

A354172 Product_{n>=1} (1 + x^n)^(a(n)/n!) = 1 + sinh(x).

Original entry on oeis.org

1, 0, 1, -4, 21, -76, 1023, -12160, 65145, -602416, 10925883, -120444160, 1994183205, -21404165056, 372390766023, -12580544512000, 158096182329585, -2119447579092736, 64115697136312563, -1412937791690260480, 27389518837925527965, -616988361649163447296, 19391677044464348893503
Offset: 1

Views

Author

Ilya Gutkovskiy, May 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[c[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; c[n_] := c[n] = Mod[n, 2]/n! - b[n, n - 1]; a[n_] := n! c[n]; Table[a[n], {n, 1, 23}]

Formula

E.g.f.: Sum_{k>=1} A067856(k) * log(1 + sinh(x^k)) / k.

A354175 Product_{n>=1} (1 + x^n)^(a(n)/n!) = 1 + tan(x).

Original entry on oeis.org

1, 0, 2, -8, 56, -256, 3184, -36224, 273920, -2845696, 48104704, -676312064, 10591523840, -149454094336, 2888557717504, -72214957359104, 1249919350046720, -23620669488234496, 624022403933077504, -15637185047733469184, 372737701735949926400, -9655667879651150135296
Offset: 1

Views

Author

Ilya Gutkovskiy, May 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[c[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; c[n_] := c[n] = 2^(n + 1) (2^(n + 1) - 1) Abs[BernoulliB[n + 1]]/((n + 1) n!) - b[n, n - 1]; a[n_] := n! c[n]; Table[a[n], {n, 1, 22}]

Formula

E.g.f.: Sum_{k>=1} A067856(k) * log(1 + tan(x^k)) / k.

A354176 Product_{n>=1} (1 + x^n)^(a(n)/n!) = 1 + tanh(x).

Original entry on oeis.org

1, 0, -2, 8, -24, -16, -720, 12032, 0, -7936, -3628800, -58190848, -479001600, -22368256, 87178291200, 6174957043712, -20922789888000, 47215125069824, -6402373705728000, -164824694455533568, 2432902008176640000, -4951498053124096, -1124000727777607680000
Offset: 1

Views

Author

Ilya Gutkovskiy, May 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[c[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; c[n_] := c[n] = 2^(n + 1) (2^(n + 1) - 1) BernoulliB[n + 1]/((n + 1) n!) - b[n, n - 1]; a[n_] := n! c[n]; Table[a[n], {n, 1, 23}]

Formula

E.g.f.: Sum_{k>=1} A067856(k) * log(1 + tanh(x^k)) / k.

A354173 Product_{n>=1} (1 + x^(2*n))^(a(n)/(2*n)!) = cos(x).

Original entry on oeis.org

-1, -8, 104, -12032, 354944, 47546368, 6204652544, -6174957043712, 47215125069824, 159504062197792768, 51085990673656315904, 54592541528151763714048, 15510963121850795776016384, 14479308135716773591282352128, -7469518701197092988127633473536, -77646018400552596699424746364731392
Offset: 1

Views

Author

Ilya Gutkovskiy, May 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[c[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; c[n_] := c[n] = {1, 0, -1, 0}[[Mod[n + 1, 4, 1]]]/n! - b[n, n - 1]; a[n_] := (2 n)! c[2 n]; Table[a[n], {n, 1, 16}]

Formula

E.g.f.: Sum_{k>=1} A067856(k) * log(cos(x^k)) / k (even powers only).

A354174 Product_{n>=1} (1 + x^(2*n))^(a(n)/(2*n)!) = cosh(x).

Original entry on oeis.org

1, 4, -104, 8128, -354944, -21642752, -6204652544, 4286437900288, -47215125069824, -78465506362130432, -51085990673656315904, -35027783166649488637952, -15510963121850795776016384, -7220202338641080038690127872, 7469518701197092988127633473536, 53919400066294168384184259715268608
Offset: 1

Views

Author

Ilya Gutkovskiy, May 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[c[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; c[n_] := c[n] = Mod[n + 1, 2]/n! - b[n, n - 1]; a[n_] := (2 n)! c[2 n]; Table[a[n], {n, 1, 16}]

Formula

E.g.f.: Sum_{k>=1} A067856(k) * log(cosh(x^k)) / k (even powers only).

A353972 Product_{n>=1} (1 + x^n)^(a(n)/n!) = 1 + arcsin(x).

Original entry on oeis.org

1, 0, 1, -4, 29, -124, 1583, -17088, 124553, -1152816, 20127867, -262838016, 3978820221, -48595514304, 914656587063, -24441484099584, 370244721585681, -5884988565575424, 162968423791332339, -3855257807841017856, 82014901819948738629, -1934570487417807744000, 58311771938510122952559
Offset: 1

Views

Author

Ilya Gutkovskiy, May 22 2022

Keywords

Crossrefs

Programs

  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[c[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; c[n_] := c[n] = Mod[n, 2] (n - 2)!!/(n (n - 1)!!) - b[n, n - 1]; a[n_] := n! c[n]; Table[a[n], {n, 1, 23}]

Formula

E.g.f.: Sum_{k>=1} A067856(k) * log(1 + arcsin(x^k)) / k.
Showing 1-6 of 6 results.