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

A360387 a(1) = 1, and for n > 1, a(n) is the number of ways that a(1..n-1) can be divided into contiguous subsequences of equal sum.

Original entry on oeis.org

1, 1, 2, 2, 2, 3, 1, 3, 1, 3, 1, 2, 2, 4, 2, 2, 4, 3, 1, 4, 3, 1, 6, 1, 1, 3, 1, 4, 4, 1, 1, 1, 1, 5, 1, 2, 5, 1, 1, 1, 3, 1, 1, 1, 2, 6, 1, 1, 2, 1, 1, 3, 1, 4, 1, 2, 1, 5, 1, 1, 1, 5, 1, 1, 1, 3, 1, 2, 2, 7, 1, 2, 2, 3, 1, 6, 1, 1, 4, 2, 2, 4, 3, 1, 3, 1, 2
Offset: 1

Views

Author

Neal Gersh Tolunsky, Feb 05 2023

Keywords

Comments

No divisions counts as 1 way of dividing the sequence.
Is the sequence unbounded?

Examples

			Initial terms with corresponding divisions (starting with single subsequence, then more):
 n  a(n)  Ways of dividing (subsequences separated by "|")
 -  ----  ------------------------------------------------
 1     1
 2     1  [1]
 3     2  [1,1]; [1|1]
 4     2  [1,1,2]; [1,1|2]
 5     2  [1,1,2,2]; [1,1|2|2]
 6     3  [1,1,2,2,2]; [1,1,2|2,2]; [1,1|2|2|2]
 7     1  [1,1,2,2,2,3]
 8     3  [1,1,2,2,2,3,1]; [1,1,2,2|2,3,1]; [1,1,2|2,2|3,1]
 9     1  [1,1,2,2,2,3,1,3]
10     3  [1,1,2,2,2,3,1,3,1]; [1,1,2,2,2|3,1,3,1]; [1,1,2|2,2|3,1|3,1]
		

Crossrefs

Cf. A308746.

Programs

  • PARI
    { m = s = 0; v = 1; for (n=1, 87, print1 (v", "); m += 2^s+=v; v = 0; fordiv (s, d, t = sum(i=1, d, 2^(i*s/d)); if (bitand(m, t)==t, v++))) } \\ Rémy Sigrist, Feb 09 2023
Showing 1-1 of 1 results.