OFFSET
1,1
COMMENTS
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1001
EXAMPLE
211 is a term because 211=1*211, 212=4*53, 213=3*71, 214=2*107 and 215=5*43. The left factors are the integers 1 to 5; and the right factors are primes.
6 is a term because 6=2*3, 7=1*7, 8=4*2, 9=3*3, 10=5*2 where the left factors are the integers 1 to 5 and the right factors are primes. - Sean A. Irvine, Jul 14 2024
PROG
(Haskell)
a071367 n = a071367_list !! (n-1)
a071367_list = tail $ filter f [1..] where
f x = and $ map g [5, 4 .. 1] where
g k = sum (map h $ map (+ x) [0..4]) == 1 where
h z = if r == 0 then a010051' z' else 0
where (z', r) = divMod z k
-- Reinhard Zumkeller, Jul 31 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Don Reble, May 21 2002
EXTENSIONS
Missing 6 inserted by Sean A. Irvine, Jul 14 2024
STATUS
approved