login
A198759
The number of pairs of braces to note the properly nested set with n elements.
2
1, 2, 4, 7, 11, 15, 20, 25, 30, 36, 42, 48, 54, 60, 66, 73, 80, 87, 94, 101, 108, 115, 122, 129, 136, 143, 150, 158, 166, 174, 182, 190, 198, 206, 214, 222, 230, 238, 246, 254, 262, 270, 278, 286, 294, 302, 310, 318, 326, 334, 342, 350, 359, 368, 377, 386, 395
OFFSET
0,2
LINKS
F. T. Adams-Watters, Re: Set of sets using minimal number of braces, SeqFan Oct 29 2011
J. Zucker, Set of sets using minimal number of braces, SeqFan Oct 25 2011
MAPLE
# implementing the Adams-Watters partial sum formula up to nmax elements
read("transforms") ;
nmax := 40 ;
a004111rep := [1, 1] ;
n := 2 ;
while nops(a004111rep) < nmax do
a004111rep := [op(a004111rep), seq(n, i=1..A004111(n))] ;
n := n+1 ;
end do:
PSUM(a004111rep) ;
CROSSREFS
Cf. A004111.
Sequence in context: A003068 A194168 A347763 * A078617 A199085 A247184
KEYWORD
nonn
AUTHOR
R. J. Mathar, Oct 29 2011
STATUS
approved