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.

A326511 Number of (binary) max-heaps on n elements from the set {0,1} containing exactly ten 0's.

Original entry on oeis.org

1, 1, 2, 5, 13, 26, 47, 86, 151, 277, 460, 783, 1248, 2136, 3091, 4872, 7166, 11610, 15720, 23832, 32847, 50788, 64714, 94916, 124296, 185246, 226976, 324586, 407824, 589416, 699010, 977912, 1188567, 1674431, 1938526, 2661055, 3147865, 4338414, 4923481
Offset: 10

Views

Author

Alois P. Heinz, Jul 09 2019

Keywords

Crossrefs

Column k=10 of A309049.

Programs

  • Maple
    b:= proc(n) option remember; series(`if`(n=0, 1, (g-> (f->
          x^n+b(f)*b(n-1-f))(min(g-1, n-g/2)))(2^ilog2(n))), x, 11)
        end:
    a:= n-> coeff(b(n), x, 10):
    seq(a(n), n=10..50);