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.

Showing 1-3 of 3 results.

A152599 a(n) = 10*a(n-1) - 12*a(n-2) for n > 1; a(0) = 1, a(1) = 4 .

Original entry on oeis.org

1, 4, 28, 232, 1984, 17056, 146752, 1262848, 10867456, 93520384, 804794368, 6925699072, 59599458304, 512886194176, 4413668442112, 37982050091008, 326856479604736, 2812780194955264, 24205524194295808, 208301879603494912, 1792552505703399424, 15425902501792055296
Offset: 0

Views

Author

Philippe Deléham, Dec 09 2008

Keywords

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{10, -12}, {1, 4}, 25] (* Paolo Xausa, Jan 19 2024 *)

Formula

G.f.: (1-6*x)/(1-10*x+12*x^2).
a(n) = Sum_{k=0..n} A147703(n,k)*3^(n-k).
a(n) = 2^n*A052961(n). - R. J. Mathar, Jun 14 2016

A365273 Number of vertices in the Laakso graph of order n.

Original entry on oeis.org

6, 30, 174, 1038, 6222, 37326, 223950, 1343694, 8062158, 48372942, 290237646, 1741425870, 10448555214, 62691331278, 376147987662, 2256887925966, 13541327555790, 81247965334734, 487487792008398, 2924926752050382
Offset: 1

Views

Author

Ken McCabe, Aug 30 2023

Keywords

Comments

This can be proved using the definition of the Laakso graph. The Laakso graph of level 0 is two vertices joined by an edge. The level 1 Laakso graph L_1 is obtained by replacing part of the edge of L_0 with a 4-cycle. Then the Laakso graph L_(n+1) is obtained from L_n by replacing each edge {uv} in L_n with a copy of the graph L_1, where u and v are identified with the vertices of degree 1 in L_1.

Examples

			The order 1 Laakso graph L_1 has 6 vertices and 6 edges. L_(n+1) is obtained from L_n by replacing each edge in L_n with a copy of L_1. This gives us 6 vertices, then 30, then 174, and so on.
		

Crossrefs

Equals twice A152596.

Programs

  • Mathematica
    LinearRecurrence[{7,-6},{6,30},30] (* Paolo Xausa, Oct 16 2023 *)

Formula

a(n) = a(n-1) + 4*6^(n-1).
a(n) = (2/5) * (2*6^n+3). - Christian Krause, Sep 30 2023

A199479 Triangle T(n,k), read by rows, given by (1,0,0,0,0,0,0,0,0,0,...) DELTA (1,1,1,0,0,0,0,0,0,0,...) where DELTA is the operator defined in A084938.

Original entry on oeis.org

1, 1, 1, 1, 3, 2, 1, 5, 9, 5, 1, 7, 20, 27, 13, 1, 9, 35, 73, 80, 34, 1, 11, 54, 151, 252, 234, 89, 1, 13, 77, 269, 597, 837, 677, 233, 1, 15, 104, 435, 1199, 2225, 2702, 1941, 610, 1, 17, 135, 657, 2158, 4956, 7943, 8533, 5523, 1597
Offset: 0

Views

Author

Philippe Deléham, Nov 06 2011

Keywords

Comments

Mirror image of triangle in A147703.

Examples

			Triangle begins:
  1;
  1,  1;
  1,  3,  2;
  1,  5,  9,  5;
  1,  7, 20, 27, 13;
  1,  9, 35, 73, 80, 34;
		

Crossrefs

Formula

Sum_{k=0..n} T(n,k)*x^k = A152620(n), A152594(n), A000007(n), A000012(n), A006012(n), A152596(n), A152599(n) for x=-3,-2,-1,0,1,2,3 respectively.
T(n,n) = A001519(n).
G.f.: (1-2y*x)/(1-(1+3y)*x+y*(1+y)*x^2).
Showing 1-3 of 3 results.