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.

A370648 Number of ways to choose a subset s of [n] and then for each element in s choose a different prime factor.

Original entry on oeis.org

1, 1, 2, 4, 6, 12, 22, 44, 56, 76, 130, 260, 376, 752, 1248, 1948, 2224, 4448, 5808, 11616, 16016, 24000, 38416, 76832, 94656, 114736, 181992, 204024, 274056, 548112, 743856, 1487712, 1593696, 2292992, 3590880, 4881120, 5630592, 11261184, 17559072, 24987360
Offset: 0

Views

Author

Alois P. Heinz, Feb 25 2024

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, s) option remember; uses numtheory; `if`(n=0, 1, b(n-1, s)+
          add(b(n-1, select(x-> x b(n, {}):
    seq(a(n), n=0..42);

Formula

a(p) = 2 * a(p-1) for prime p.