OFFSET
0,4
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..150
PROG
(Haskell)
import Data.List (union)
a199425 n = a199425_list !! n
a199425_list = f [] a199333_tabl where
f ps (ts:tts) = (length ps') : f ps' tts where
ps' = ps `union` (take ((length ts - 1) `div` 2) $ tail ts)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 09 2011
STATUS
approved