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

A072638 Number of unary-binary rooted trees of height at most n.

Original entry on oeis.org

0, 1, 3, 10, 66, 2278, 2598060, 3374961778891, 5695183504492614029263278, 16217557574922386301420536972254869595782763547560
Offset: 0

Views

Author

Antti Karttunen, Jun 02 2002

Keywords

Comments

A unary-binary tree is one in which the degree of every node is <= 3.
a(n+1) = (a(n)+1)-th triangular numbers = A000217(a(n)+1). a(n+1) = (a(n) + 1) * (a(n) + 2) / 2. a(n+1) = A006894(n+2) - 1. - Jaroslav Krizek, Sep 11 2009
a(n) is the smallest integer that is the sum of n distinct members of the complete sequence A000124. See A204009 for the binary vectors that select the terms from A000124. - Frank M Jackson, Jan 09 2012

Crossrefs

Maximal position in A071673 where the value n occurs.
Binary width of each term: A072641. Cf. A072639, A072640, A072654.

Programs

  • Maple
    a[ -1]:=0:a[0]:=1:for n from 1 to 50 do a[n]:=binomial(a[n-1]+2,2) od: seq(a[n], n=-1..9); # Zerinvary Lajos, Jun 08 2007
  • Mathematica
    Clear[a]; a[0] = 0; a[n_] := a[n] = 1 + (a[n-1]*(a[n-1]+3))/2; Table[a[n], {n, 0, 9}] (* Jean-François Alcover, Jan 31 2013 *)

Formula

a(n+1) = 1 + (a(n)*(a(n)+3))/2.
Conjecture: a(n) = A006894(n+1) - 1. - R. J. Mathar, Apr 23 2007
a(n) := C(a(n-1) + 2, 2), n >= -1. - Zerinvary Lajos, Jun 08 2007

Extensions

Edited by Christian G. Bower, Oct 23 2002

A072642 Binary widths of the terms of A072640.

Original entry on oeis.org

0, 1, 2, 4, 7, 12, 19, 34, 62, 105, 184, 326, 568, 986, 1726
Offset: 0

Views

Author

Antti Karttunen, Jun 02 2002

Keywords

Crossrefs

Extensions

a(11)-a(14) from Sean A. Irvine, Oct 17 2024

A072655 Binary widths of the terms of A072654.

Original entry on oeis.org

0, 1, 3, 5, 8, 14, 26, 49, 94, 183, 362, 718, 1429, 2852, 5696, 11384
Offset: 0

Views

Author

Antti Karttunen, Jun 02 2002

Keywords

Crossrefs

Extensions

a(11)-a(15) from Sean A. Irvine, Oct 18 2024

A072791 Binary widths of A072790.

Original entry on oeis.org

0, 1, 2, 4, 6, 8, 13, 23, 43, 82, 160, 316, 628, 1252, 2500, 4997
Offset: 0

Views

Author

Antti Karttunen, Jun 12 2002

Keywords

Crossrefs

See the comment at A072787. Compare for example with A072641 and A072642.

Extensions

a(12)-a(15) from Sean A. Irvine, Oct 27 2024
Showing 1-4 of 4 results.