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-5 of 5 results.

A190872 a(n) = 11*a(n-1) - 9*a(n-2), a(0)=0, a(1)=1.

Original entry on oeis.org

0, 1, 11, 112, 1133, 11455, 115808, 1170793, 11836451, 119663824, 1209774005, 12230539639, 123647969984, 1250052813073, 12637749213947, 127764766035760, 1291672683467837, 13058516623824367, 132018628710857504, 1334678266205013241, 13493293269857428115
Offset: 0

Views

Author

Rolf Pleisch, May 22 2011

Keywords

Comments

a(k) is Heuberger and Wagner's G_k at lemma 6.2 (2). They show (theorem 3.3 (1)) that the largest number of maximum matchings in a tree of 7k+1 vertices is a(k+1) and there is a unique free tree with this many maximum matchings. (See A333347 for all tree sizes.) - Kevin Ryde, Apr 11 2020

Crossrefs

Cf. A333345 (growth power), A190871, A190873.

Programs

  • Magma
    I:=[0,1]; [n le 2 select I[n] else 11*Self(n-1)-9*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Dec 19 2015
  • Mathematica
    LinearRecurrence[{11, -9}, {0, 1}, 50] (* T. D. Noe, May 23 2011 *)
  • PARI
    concat(0, Vec(x/(1-11*x+9*x^2) + O(x^100))) \\ Altug Alkan, Dec 18 2015
    
  • PARI
    a(n) = polcoeff(lift(Mod('x,'x^2-11*'x+9)^n), 1); \\ Kevin Ryde, Apr 11 2020
    

Formula

a(n) = ((11+sqrt(85))^n-(11-sqrt(85))^n)/(2^n*sqrt(85)).
G.f.: x/(1-11*x+9*x^2). - Philippe Deléham, Feb 12 2012
E.g.f.: (2/sqrt(85))*exp(11*x/2)*sinh(sqrt(85)*x/2). - G. C. Greubel, Dec 18 2015
a(n) = (L^n - H^n)/(L-H) where L = (11+sqrt(85))/2 and H = (11-sqrt(85))/2. [Heuberger and Wagner lemma 6.2 (2)] - Kevin Ryde, Apr 11 2020

Extensions

Extended by T. D. Noe, May 23 2011

A333345 Decimal expansion of (11 + sqrt(85))/2.

Original entry on oeis.org

1, 0, 1, 0, 9, 7, 7, 2, 2, 2, 8, 6, 4, 6, 4, 4, 3, 6, 5, 5, 0, 0, 1, 1, 3, 7, 1, 4, 0, 8, 8, 1, 3, 9, 6, 5, 7, 8, 6, 2, 3, 4, 0, 2, 5, 2, 4, 3, 6, 1, 2, 3, 2, 0, 0, 4, 0, 0, 3, 8, 7, 6, 1, 0, 2, 7, 2, 1, 3, 3, 5, 5, 1, 3, 4, 0, 0, 9, 3, 7, 7, 3, 0, 3, 8, 3, 9, 4, 7, 0, 4, 5, 3, 9, 6, 6, 4, 0, 2, 8, 2, 4, 7, 0, 1, 6, 9, 9
Offset: 2

Views

Author

Kevin Ryde, Mar 15 2020

Keywords

Comments

This constant is Heuberger and Wagner's lambda. They consider the number of maximum matchings a tree of n vertices may have, and show that the largest number of maximum matchings (A333347) grows as O(lambda^(n/7)) (see A333346 for the 7th root). Lambda is the larger eigenvalue of matrix M = [8,3/5,3] which is raised to a power when counting matchings in a chain of "C" parts in the trees (their lemma 6.2).
Apart from the first digit the same as A176522. - R. J. Mathar, Apr 03 2020

Examples

			10.1097722286...
		

Crossrefs

Sequences growing as this power: A147841, A190872, A333344.
Cf. A333346 (seventh root), A176522.

Programs

  • Mathematica
    With[{$MaxExtraPrecision = 1000}, First@ RealDigits[(11 + Sqrt[85])/2, 10, 105]] (* Michael De Vlieger, Mar 15 2020 *)
  • PARI
    (11 + sqrt(85))/2 \\ Michel Marcus, May 21 2020

Formula

Equals continued fraction [10; 9] = 10 + 1/(9 + 1/(9 + 1/(9 + 1/...))). - Peter Luschny, Mar 15 2020

A333344 a(n) = 11*a(n-1) - 9*a(n-2) starting a(0)=1, a(1)=10.

Original entry on oeis.org

1, 10, 101, 1021, 10322, 104353, 1054985, 10665658, 107827373, 1090110181, 11020765634, 111417430345, 1126404843089, 11387696400874, 115127016821813, 1163907917432077, 11766843940356530, 118960112087033137, 1202659637494155737
Offset: 0

Views

Author

Kevin Ryde, Mar 15 2020

Keywords

Comments

First differences of A190872.

Crossrefs

Cf. A333345 (growth power), A190872 (partial sums), A147841, A333347.

Programs

  • Mathematica
    LinearRecurrence[{11, -9}, {1, 10}, 20] (* Amiram Eldar, Mar 15 2020 *)
  • PARI
    a(n) = polcoeff(lift(('x-1)*Mod('x,'x^2-11*'x+9)^n), 1);

Formula

a(n) = A190872(n+1) - A190872(n) = A190872(n) + A147841(n).
G.f.: (1 - x)/(1 - 11*x + 9*x^2).
E.g.f.: exp(11*x/2)*(85*cosh(sqrt(85)*x/2) + 9*sqrt(85)*sinh(sqrt(85)*x/2))/85. - Stefano Spezia, Mar 03 2023

A333346 Decimal expansion of ((11 + sqrt(85))/2)^(1/7).

Original entry on oeis.org

1, 3, 9, 1, 6, 6, 4, 2, 8, 4, 1, 3, 9, 8, 8, 8, 5, 1, 0, 5, 7, 4, 5, 8, 1, 2, 3, 8, 4, 5, 7, 9, 3, 3, 0, 0, 9, 0, 0, 6, 0, 3, 5, 6, 6, 5, 7, 0, 0, 4, 5, 5, 0, 6, 8, 8, 8, 0, 1, 4, 7, 8, 4, 9, 7, 8, 4, 7, 4, 8, 0, 0, 4, 5, 3, 6, 8, 8, 9, 1, 0, 1, 1, 9, 9, 6, 9, 2, 2, 8, 1, 0, 2, 9, 6, 1, 6, 1, 4, 6, 8, 4, 7, 8, 3, 0, 5, 4
Offset: 1

Views

Author

Kevin Ryde, Mar 15 2020

Keywords

Comments

Heuberger and Wagner consider the number of maximum matchings a tree of n vertices may have. They show that the largest number of maximum matchings (A333347) grows as O(1.3916...^n) where the power is the constant here. This arises in their tree forms since each 7-vertex "C" part increases the number of matchings by a factor of matrix M=[8,3/5,3] (lemma 6.2). The larger eigenvalue of M is their lambda = A333345 and so a factor of lambda for each 7 vertices.

Examples

			1.39166428413...
		

Crossrefs

Sequence growing as this power: A333347.
Cf. A333345.

Programs

  • Mathematica
    RealDigits[((11 + Sqrt[85])/2)^(1/7), 10, 100][[1]] (* Amiram Eldar, Mar 15 2020 *)
  • PARI
    ((11 + sqrt(85))/2)^(1/7) \\ Stefano Spezia, Feb 09 2025

A333348 Matching number of the tree of n vertices with the largest number of maximum matchings.

Original entry on oeis.org

0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 12, 12, 12, 12, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 24, 24, 24
Offset: 0

Views

Author

Kevin Ryde, Mar 15 2020

Keywords

Comments

Heuberger and Wagner consider how many different maximum matchings a tree of n vertices may have. They determine the unique tree (free tree) of n vertices with the largest number of maximum matchings, or at n=6 and n=34 the two trees with equal largest number. a(n) is the matching number of the unique tree, and of both n=34 trees since they have the same matching number. For n=6, a(6)=1 is the star-6 which is their T_{6,1}. The other n=6 is their T_{6,2} and its matching number would be a(6)=2 instead.
The trees n!=2 have all pairs of leaves an even distance apart (the type of free tree counted by A304867). Vertices an even distance to a leaf are Heuberger and Wagner's type A, and vertices an odd distance to a leaf are type B. Per their definitions (and for any "even distance leaves" tree in fact), all type B vertices must be matched in a maximum matching and consequently the matching number is the number of type B vertices. 2n/7 appears in the formula below since each "C" part contains 7 vertices of which 2 are type B; then there are certain fixed additional B vertices according to n mod 7.

Crossrefs

Cf. A333347 (number of maximum matchings).

Programs

  • Mathematica
    A333348[n_] := Switch[n, 2, 1, 6, 1, 13, 3, 20, 5, _, Floor[(2*n + 2)/7]];
    Array[A333348, 100, 0] (* Paolo Xausa, Jun 18 2024 *)

Formula

a(2)=a(6)=1, a(13)=3, a(20)=5, and otherwise a(n) = floor((2n+2)/7).
Showing 1-5 of 5 results.