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.

User: Oliver Knill

Oliver Knill's wiki page.

Oliver Knill has authored 1 sequences.

A187734 a(n) is the number of n-walks between the vertices 1 and 3 of the Graph on the chalkboard in 'Good Will Hunting', (1997).

Original entry on oeis.org

0, 2, 2, 14, 18, 94, 146, 638, 1138, 4382, 8658, 30398, 64818, 212574, 479890, 1496062, 3525106, 10581918, 25748306, 75139390, 187301554, 535144670, 1358396434, 3820058238, 9829858162, 27316621854, 71015537874, 195595836350, 512422576178, 1401935442782
Offset: 1

Author

Oliver Knill (knill(AT)math.harvard.edu), Burkard Polster (burkard.polster(AT)monash.edu), Marty Ross (martinirossi(AT)gmail.com), and Robert G. Wilson v, Jan 02 2013

Keywords

Comments

For a presentation of the Graph, see the first link.

Examples

			"For example, between the vertices 1 and 3, we can calculate that there are no 1-walks, two 2-walks, two 3-walks and so on. The resulting sequence of numbers begins 0, 2, 2, 14, 18, 94, 146, 638, ..." (p. 11).
		

References

  • Burkard Polster & Marty Ross, Math Goes to the Movies, The Johns Hopkins University Press, Baltimore, 2013, ยง1.7 Mathematics: Graph Theory 1, pp. 9-12.

Programs

  • Mathematica
    LinearRecurrence[{1, 6, -4}, {0, 2, 2}, 30] (* Or *)
    Rest@ CoefficientList[Series[2x^2/(1 - x - 6x^2 + 4x^3), {x, 0, 28}], x]
  • PARI
    Vec(2*x^2/(1 - x - 6*x^2 + 4*x^3)+O(x^99)) \\ Charles R Greathouse IV, May 21 2013

Formula

G.f.: 2*x^2/(1 - x - 6*x^2 + 4*x^3).