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.

A264236 Number of vertices at level n of the hyperbolic Pascal pyramid.

Original entry on oeis.org

1, 3, 6, 13, 36, 138, 736, 4908, 36351, 280228, 2190651, 17206203, 135357481, 1065387963, 8387050686, 66029196613, 519841755036, 4092692363058, 32221664474776, 253680537891828, 1997222414704551, 15724098193422028, 123795561597659331, 974640390569138163
Offset: 0

Views

Author

Michel Marcus, Nov 09 2015

Keywords

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{12, -37, 37, -12, 1}, {1, 3, 6, 13, 36}, 30] (* Bruno Berselli, Nov 09 2015 *)
  • PARI
    Vec((1-9*x+7*x^2+15*x^3+3*x^4)/((1-x)*(1-3*x+x^2)*(1-8*x+x^2)) + O(x^50)) \\ Altug Alkan, Nov 09 2015

Formula

a(n) = 12*a(n-1) - 37*a(n-2) + 37*a(n-3) - 12*a(n-4) + a(n-5).
a(n) = (-3/2 + 9*sqrt(5)/10)*((3 + sqrt(5))/2)^n + (-3/2 - 9*sqrt(5)/10)*((3 - sqrt(5))/2)^n + (7/12 - 3*sqrt(15)/20)*(4 + sqrt(15))^n + (7/12 + 3*sqrt(15)/20)*(4 - sqrt(15))^n + 17/6. (See Németh paper, page 9.)
G.f.: (1 - 9*x + 7*x^2 + 15*x^3 + 3*x^4)/((1 - x)*(1 - 3*x + x^2)*(1 - 8*x + x^2)). [Bruno Berselli, Nov 09 2015]
a(n) = A076765(n-3) + 3*Fibonacci(2*(n-1)) + 3. - Ehren Metcalfe, Apr 18 2019

Extensions

More terms from Bruno Berselli, Nov 09 2015