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.

A242048 Decimal expansion of the asymptotic growth rate of the number of odd coefficients in Pascal "septinomial" triangle mod 2, where coefficients are from (1+x+...+x^5+x^6)^n.

Original entry on oeis.org

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

Views

Author

Jean-François Alcover, Aug 13 2014

Keywords

Examples

			0.83179639673444068999389310745866895732592855850213772205535...
		

Crossrefs

Cf. A242208 (1+x+x^2)^n, A242021 (1+x+x^3)^n, A242022 (1+x+x^2+x^3+x^4)^n, A241002 (1+x+x^4)^n, A242047 (1+x+...+x^4+x^5)^n.

Programs

  • Mathematica
    mu = Sort[Table[Root[x^6 - x^5 - 2*x^4 - 28*x^3 + 16*x + 64, x, n], {n, 1, 5}], N[Abs[#1]] < N[Abs[#2]]&] // Last; RealDigits[Log[mu]/Log[2] - 1, 10, 102] // First

Formula

log(abs(mu))/log(2) - 1, where mu is the root of x^6 - x^5 - 2*x^4 - 28*x^3 + 16*x + 64 with maximum modulus.