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

A270121 Denominators in a perturbed Engel series.

Original entry on oeis.org

7, 112, 403200, 1755760043520000, 53695136666462381094317154204367872000000
Offset: 1

Views

Author

Andrew Hone, Mar 11 2016

Keywords

Comments

The sum of the series 6/a(1)+1/a(2)+1/a(3)+... is a transcendental number, and has a continued fraction expansion whose coefficients are given explicitly in terms of the sequence a(n) and the ratios a(n+1)/a(n).

Crossrefs

Programs

  • Mathematica
    a[1] = 7; a[2] = 112;
    a[n_] := a[n] = (a[n-1]^2 (1+(n-1)a[n-1]))/a[n-2];
    Array[a, 5] (* Jean-François Alcover, Dec 16 2018 *)

Formula

The sequence is generated by taking a(n+1)=b(n-1)*a(n)*(1+n*a(n)), b(n)=a(n+1)/a(n) for n>=1 with initial values a(1)=7,b(0)=2. Alternatively, if a(1)=7,a(2)=112 are given then a(n+1)*a(n-1)=a(n)^2*(1+n*a(n)) for n>=2.
Sum_{n>=1} 1/a(n) = -5/7 + A270137. - Amiram Eldar, Nov 20 2020
Showing 1-1 of 1 results.