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.

A343201 Decimal expansion of Sum_{n>=1} (-1)^(n+1)*K(n)/n!, where K(n) is the Kempner function (A002034).

Original entry on oeis.org

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

Views

Author

Amiram Eldar, Jul 07 2021

Keywords

Comments

This constant is irrational (Sàndor, 1997).

Examples

			0.37213844163204281468199194158558396902073794563977...
		

Crossrefs

Programs

  • Mathematica
    kempner[n_] := Module[{k = 1}, While[! Divisible[k!, n], k++]; k]; RealDigits[Sum[(-1)^(n + 1) * kempner[n]/n!, {n, 1, 100}], 10, 100][[1]]