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.

A266390 Decimal expansion of exponential growth rate of number of labeled planar graphs on n vertices.

Original entry on oeis.org

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

Views

Author

Gheorghe Coserea, Dec 28 2015

Keywords

Examples

			27.2268777685...
		

Crossrefs

Programs

  • PARI
    A266389= 0.6263716633;
    A1(t)  = log(1+t) * (3*t-1) * (1+t)^3 / (16*t^3);
    A2(t)  = log(1+2*t) * (1+3*t) * (1-t)^3 / (32*t^3);
    A3(t)  = (1-t) * (185*t^4 + 698*t^3 - 217*t^2 - 160*t + 6);
    A4(t)  = 64*t * (1+3*t)^2 * (3+t);
    A(t)   = A1(t) + A2(t) + A3(t) / A4(t);
    R(t)   = 1/16 * sqrt(1+3*t) * (1/t - 1)^3 * exp(A(t));
    1/R(A266389)

Formula

Equals 1/R(A266389), where function t->R(t) is defined in the PARI code.
A066537(n) ~ A266391 * A266390^n * n^(-7/2) * n!.