OFFSET
1,2
COMMENTS
All numbers of the form p_1^k1*p_2^k2*...*p_n^k_n, where k1 <= k2 <= ... <= k_n and the p_i are n successive primes.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
PROG
(Haskell)
a133810 n = a133810_list !! (n-1)
a133810_list = 1 : filter f [2..] where
f x = (and $ zipWith (<=) eps $ tail eps) &&
(all (== 1) $ zipWith (-) (tail ips) ips)
where ips = map a049084 $ a027748_row x
eps = a124010_row x
-- Reinhard Zumkeller, Nov 07 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Olivier Gérard, Sep 23, 2007
STATUS
approved