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

A098572 a(n) = floor(Sum_{m=1..n} m^(1/m)).

Original entry on oeis.org

1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79
Offset: 1

Views

Author

Mark Hudson (mrmarkhudson(AT)hotmail.com), Sep 16 2004

Keywords

Examples

			floor(1^(1/1)+2^(1/2)+3^(1/3))=3 and floor(1^(1/1)+2^(1/2)+3^(1/3)+4^(1/4))=5.
		

Crossrefs

Programs

  • Magma
    [Floor((&+[k^(1/k): k in [1..n]])): n in [1..30]]; // G. C. Greubel, Feb 03 2018
  • Maple
    A098572 := proc(p)
        option remember;
        add(root[i](i),i=1..p) ;
        floor(%) ;
    end proc:
  • Mathematica
    Table[Floor[Sum[k^(1/k), {k, 1, n}]], {n, 1, 50}] (* G. C. Greubel, Feb 03 2018 *)
  • PARI
    for(n=1,30, print1(floor(sum(k=1,n, k^(1/k))), ", ")) \\ G. C. Greubel, Feb 03 2018
    

Formula

a(n) ~ n + log(n)^2/2 + c, where c = A363704 = sg1 + Sum_{k>=2} (-1)^k / k! * k-th derivative of zeta(k) = 0.9885496011422687506447541083399712644219986838..., where sg1 is the first Stieltjes constant (see A082633). - Vaclav Kotesovec, Jun 17 2023

A363716 Decimal expansion of Sum_{k>=2} (1/k!) * k-th derivative of zeta(k).

Original entry on oeis.org

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

Views

Author

Vaclav Kotesovec, Jun 17 2023

Keywords

Examples

			0.9361913194044870516411920348031344882476706274072832788436119459958471789...
		

Crossrefs

Programs

  • Mathematica
    digits = 120; d = 1; j = 2; s = 0; While[Abs[d] > 10^(-digits - 5), d = 1 / j! * Derivative[j][Zeta][j]; s += d; j++]; RealDigits[s, 10, 120][[1]]

Formula

Equals lim_{n->oo} (Sum_{m=1..n} 1/m^(1/m)) - n + log(n)^2/2 + sg1, where sg1 is the first Stieltjes constant (see A082633).
Showing 1-2 of 2 results.