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.

A255910 Decimal expansion of 16/9.

Original entry on oeis.org

1, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7
Offset: 1

Views

Author

Derek Orr, Mar 10 2015

Keywords

Comments

Cutting the unit square [0,1] x [0,1] into two equal areas with a parabolic curve y = A*x^2 requires A to be 16/9. If you extend this to an arbitrary square [0,s] x [0,s], A = (16/9)*s.
Except for the first terms, identical to A186684, A021040 and A010727.

Examples

			1.7777777777777777777777777777...
		

Crossrefs

Programs

  • Mathematica
    RealDigits[16/9, 10, 100][[1]] (* Vincenzo Librandi, Mar 24 2015 *)
  • PARI
    x=16/9; for(n=1, 100, d=floor(x); x=(x-d)*10; print1(d,", "))

Formula

From Elmo R. Oliveira, Aug 05 2024: (Start)
G.f.: x + 7*x^2/(1 - x).
E.g.f.: 7*(exp(x) - 1) - 6*x.
a(n) = 7 - 6*0^(n-1).
a(n) = 7, n > 1. (End)