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.

A334073 Decimal expansion of Sum_{k >= 1} e(k)/2^k, where e(k) = 1 if gpf(k+1) > gpf(k) and 0 otherwise, and gpf(k) is the greatest prime dividing k (A006530).

Original entry on oeis.org

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

Views

Author

Amiram Eldar, Apr 13 2020

Keywords

Comments

This constant is irrational (Erdős and Pomerance, 1978).
It is assumed that gpf(1) = A006530(1) = 1.

Examples

			0.83522592242052459434878298057517624119404331710532...
		

Crossrefs

Programs

  • Mathematica
    gpf[n_] := FactorInteger[n][[-1, 1]]; e[n_] := Boole[gpf[n+1] > gpf[n]]; RealDigits[Sum[e[n]/2^n, {n, 1, 500}], 10, 100][[1]]