OFFSET
1,2
COMMENTS
Cumulative sum of A067824.
LINKS
Peter Kagey, Table of n, a(n) for n = 1..10000
Mathematics Stack Exchange user Markus Scheuer, Finding the number of subsets of a set such that an element divides the succeeding element.
FORMULA
EXAMPLE
For n = 4 the a(4) = 9 sequences are 1; 1, 2; 1, 2, 4; 1, 3; 1, 4; 2; 2, 4; 3; and 4.
PROG
(PARI) s=0; for (n=1, #(z=vector(56)), print1 (s += z[n]=1+sumdiv(n, k, if (k<n, z[k], 0)) ", ")) \\ Rémy Sigrist, Nov 08 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Kagey, Nov 04 2019
STATUS
approved