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.

A250257 Least nonnegative integer whose decimal digits divide the plane into n regions.

Original entry on oeis.org

1, 0, 8, 48, 88, 488, 888, 4888, 8888, 48888, 88888, 488888, 888888, 4888888, 8888888, 48888888, 88888888, 488888888, 888888888, 4888888888, 8888888888, 48888888888, 88888888888, 488888888888, 888888888888, 4888888888888, 8888888888888, 48888888888888
Offset: 1

Views

Author

Rick L. Shepherd, Nov 15 2014

Keywords

Comments

Equivalently, with offset 0, least nonnegative integer with n holes in its decimal digits. Leading zeros are not permitted. Identical to A249572 except that a(2) = 0, not 4. See also the comments in A249572.

Examples

			The integer 48, whose decimal digits have 3 holes, divides the plane into 4 regions. No smaller nonnegative integer does this, so a(4) = 48.
		

Crossrefs

Programs

  • Magma
    I:=[1,0,8,48,88]; [n le 5 select I[n] else 10*Self(n-2)+8: n in [1..30]]; // Vincenzo Librandi, Nov 15 2014
  • Mathematica
    Join[{1, 0, 8}, RecurrenceTable[{a[1]==48, a[2]==88, a[n]==10 a[n-2] + 8}, a, {n, 20}]] (* Vincenzo Librandi, Nov 16 2014 *)

Formula

a(n) = 10*a(n-2) + 8 for n >= 5.
From Chai Wah Wu, Jul 12 2016: (Start)
a(n) = a(n-1) + 10*a(n-2) - 10*a(n-3) for n > 5.
G.f.: x*(-40*x^4 + 50*x^3 - 2*x^2 - x + 1)/((x - 1)*(10*x^2 - 1)). (End)