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.

A385457 Number of odd entries in row n of the Fibonomial triangle (A010048).

Original entry on oeis.org

1, 2, 3, 2, 4, 6, 2, 4, 6, 4, 8, 12, 2, 4, 6, 4, 8, 12, 4, 8, 12, 8, 16, 24, 2, 4, 6, 4, 8, 12, 4, 8, 12, 8, 16, 24, 4, 8, 12, 8, 16, 24, 8, 16, 24, 16, 32, 48, 2, 4, 6, 4, 8, 12, 4, 8, 12, 8, 16, 24, 4, 8, 12, 8, 16, 24, 8, 16, 24, 16, 32, 48, 4, 8, 12, 8, 16
Offset: 0

Views

Author

David Radcliffe, Jun 29 2025

Keywords

Comments

Each term is a power of two, or three times a power of two.

Crossrefs

Programs

  • Mathematica
    A385457[n_] := (1 + Mod[n, 3])*2^DigitSum[Quotient[n, 3], 2];
    Array[A385457, 100, 0] (* Paolo Xausa, Jul 03 2025 *)

Formula

a(n) = (1 + (n mod 3)) * A001316([n/3]).