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.

A324467 Three times the binary weight of n: 3*A000120(n).

Original entry on oeis.org

0, 3, 3, 6, 3, 6, 6, 9, 3, 6, 6, 9, 6, 9, 9, 12, 3, 6, 6, 9, 6, 9, 9, 12, 6, 9, 9, 12, 9, 12, 12, 15, 3, 6, 6, 9, 6, 9, 9, 12, 6, 9, 9, 12, 9, 12, 12, 15, 6, 9, 9, 12, 9, 12, 12, 15, 9, 12, 12, 15, 12, 15, 15, 18, 3, 6, 6, 9, 6, 9, 9, 12, 6, 9, 9, 12, 9, 12, 12, 15, 6, 9, 9, 12
Offset: 0

Views

Author

N. J. A. Sloane, Mar 02 2019

Keywords

Comments

Exponent of highest power of 2 that divides multinomial(4*n;n,n,n,n).

Crossrefs

Programs

  • Magma
    [3*Valuation(Binomial(2*n,n), 2): n in [0..120]]; // Vincenzo Librandi, Mar 11 2019
  • Maple
    [seq(padic[ordp](multinomial(4*n,n,n,n,n),2),n=0..128)];
  • Mathematica
    3 Log[2, Nest[Join[#, 2 #]&, {1}, 8]] (* Vincenzo Librandi, Mar 11 2019 *)