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.

A336627 Coordination sequence for the Manhattan lattice.

Original entry on oeis.org

1, 2, 4, 8, 11, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 148, 152, 156, 160, 164, 168, 172, 176, 180, 184, 188, 192, 196, 200, 204, 208, 212, 216, 220, 224
Offset: 0

Views

Author

Sean A. Irvine, Jul 28 2020

Keywords

Comments

In the Manhattan lattice, N-S streets run alternately N and S, and E-W streets run alternately E and W. - N. J. A. Sloane, Jul 29 2020

Crossrefs

Cf. A008574 (square lattice), A117633 (self-avoiding walks).

Programs

  • Mathematica
    CoefficientList[Series[(1+x^2)(1+2x^3-x^4)/(1-x)^2,{x,0,80}],x] (* or *) LinearRecurrence[{2,-1},{1,2,4,8,11,16,20},80] (* Harvey P. Dale, Dec 28 2021 *)
  • PARI
    a(n)=if(n>4, 4*n-4, min(2^n, 11)) \\ Charles R Greathouse IV, Oct 18 2022

Formula

G.f.: (1+x^2) * (1+2*x^3-x^4) / (1-x)^2.
a(n) = 4*(n-1), n >= 5.