OFFSET
1,1
COMMENTS
LINKS
Reinhard Zumkeller, Rows n = 1..1000 of table, flattened
EXAMPLE
The table starts in row n=1 (with the composite 4) as
2;
2,3;
2,4;
3;
2,5;
2,3,4,6;
2,7;
3,5;
2,4,8;
2,3,6,9;
2,4,5,10.
MATHEMATICA
Divisors[Select[Range[50], CompositeQ]][[All, 2 ;; -2]] (* Paolo Xausa, Dec 26 2024 *)
PROG
(Haskell)
a163870 n k = a163870_tabf !! (n-1) !! (k-1)
a163870_row n = a163870_tabf !! (n-1)
a163870_tabf = filter (not . null) $ map tail a027751_tabf
-- Reinhard Zumkeller, Mar 29 2014
(Python)
from itertools import islice
def g():
n, j = 1, 2
while True:
n = (n << 1) | 1
p = 1
for k in range(2, (j >> 1) + 1):
p = (p << 1) | 1
if n % p == 0: yield k
j+=1
print(list(islice(g(), 95))) # Darío Clavijo, Dec 16 2024
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Juri-Stepan Gerasimov, Aug 06 2009
EXTENSIONS
Entries checked by R. J. Mathar, Sep 22 2009
STATUS
approved