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

A069814 Decimal expansion of root of the equation x*cosh(x)=1.

Original entry on oeis.org

7, 6, 5, 0, 0, 9, 9, 5, 4, 5, 5, 0, 7, 3, 2, 1, 2, 2, 6, 5, 5, 3, 2, 1, 7, 4, 2, 4, 8, 2, 8, 1, 5, 2, 1, 9, 2, 0, 0, 3, 5, 2, 1, 3, 7, 4, 7, 5, 0, 4, 3, 3, 2, 3, 1, 6, 2, 4, 7, 0, 7, 1, 0, 7, 4, 0, 0, 1, 9, 2, 3, 1, 9, 9, 4, 4, 8, 1, 4, 1, 2, 7, 8, 0, 8, 2
Offset: 0

Views

Author

Benoit Cloitre, Apr 30 2002

Keywords

Examples

			0.76500995455073212265532174248281521920035213747504332316247071...
		

Crossrefs

Programs

  • Maple
    Digits:= 120:
    fsolve(x*cosh(x)=1,x=0..1); # Robert Israel, Jan 07 2015
  • Mathematica
    RealDigits[x/.FindRoot[x*Cosh[x]==1,{x,1},WorkingPrecision->120]][[1]] (* Harvey P. Dale, Jan 06 2015 *)
  • PARI
    solve(x=0, 1, x*cosh(x)-1) \\ Michel Marcus, Jan 06 2015

Extensions

Corrected by Harvey P. Dale, Jan 06 2015

A385281 Expansion of e.g.f. 1/(1 - 2 * x * cosh(2*x))^(1/2).

Original entry on oeis.org

1, 1, 3, 27, 249, 2825, 41355, 708883, 13888497, 309267729, 7698772755, 211585744139, 6367841422569, 208299923870233, 7357493992966299, 279095125351544835, 11316313498670411745, 488403056864943302177, 22355228989851909617187, 1081663315375339026249211
Offset: 0

Views

Author

Seiichi Manyama, Jun 24 2025

Keywords

Crossrefs

Programs

  • PARI
    a185951(n, k) = binomial(n, k)/2^k*sum(j=0, k, (2*j-k)^(n-k)*binomial(k, j));
    a001147(n) = prod(k=0, n-1, 2*k+1);
    a(n) = sum(k=0, n, a001147(k)*2^(n-k)*a185951(n, k));

Formula

a(n) = Sum_{k=0..n} A001147(k) * 2^(n-k) * A185951(n,k), where A185951(n,0) = 0^n.
a(n) ~ 2^(n + 1/2) * n^n / (sqrt(1 + r*sqrt(1 - r^2)) * exp(n) * r^n), where r = A069814. - Vaclav Kotesovec, Jun 24 2025

A385309 Expansion of e.g.f. 1/(1 - 3 * x * cosh(x))^(1/3).

Original entry on oeis.org

1, 1, 4, 31, 328, 4485, 75520, 1509347, 34916224, 917703145, 27011107840, 880133628231, 31451749424128, 1223047891889837, 51414400611438592, 2323391075748100555, 112315439676217262080, 5783449255108473820497, 316034972288791445241856, 18265740423344520141491951
Offset: 0

Views

Author

Seiichi Manyama, Jun 24 2025

Keywords

Crossrefs

Programs

  • PARI
    a185951(n, k) = binomial(n, k)/2^k*sum(j=0, k, (2*j-k)^(n-k)*binomial(k, j));
    a007559(n) = prod(k=0, n-1, 3*k+1);
    a(n) = sum(k=0, n, a007559(k)*a185951(n, k));

Formula

a(n) = Sum_{k=0..n} A007559(k) * A185951(n,k), where A185951(n,0) = 0^n.
Showing 1-3 of 3 results.