login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A338508 Irregular table T(n, k) read by rows, n > 0 and k = 1..A000005(n); T(n, k) is the number of nonempty subsets of divisors of n with greatest common divisor of elements equal to the k-th divisor of n. 1
1, 2, 1, 2, 1, 4, 2, 1, 2, 1, 10, 2, 2, 1, 2, 1, 8, 4, 2, 1, 4, 2, 1, 10, 2, 2, 1, 2, 1, 44, 10, 4, 2, 2, 1, 2, 1, 10, 2, 2, 1, 10, 2, 2, 1, 16, 8, 4, 2, 1, 2, 1, 44, 4, 10, 2, 2, 1, 2, 1, 44, 10, 2, 4, 2, 1, 10, 2, 2, 1, 10, 2, 2, 1, 2, 1, 184, 44, 8, 10, 4, 2, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Sum_{k = 1..A000005(n)} T(n, k) = A100587(n).
T(n, 1) = A076078(n).
T(n, k) = A338507(n, A000005(n)+1-k) for k = 1..A000005(n)-1.
T(n, A000005(n)) = 1.
EXAMPLE
Triangle begins:
1: [1]
2: [2, 1]
3: [2, 1]
4: [4, 2, 1]
5: [2, 1]
6: [10, 2, 2, 1]
7: [2, 1]
8: [8, 4, 2, 1]
9: [4, 2, 1]
10: [10, 2, 2, 1]
11: [2, 1]
12: [44, 10, 4, 2, 2, 1]
13: [2, 1]
14: [10, 2, 2, 1]
15: [10, 2, 2, 1]
MATHEMATICA
Array[Tally[Map[GCD @@ # &, Rest[Subsets@ Divisors[#]]]][[All, -1]] &, 24] // Flatten (* Michael De Vlieger, Nov 04 2020 *)
PROG
(PARI) row(n) = { my (d=divisors(n), r=vector(#d)); for (m=1, 2^#d-1, r[setsearch(d, gcd(vecextract(d, m)))]++); r }
CROSSREFS
Cf. A000005, A076078, A100587, A338507 (LCM variant).
Sequence in context: A068341 A360738 A321368 * A100380 A205403 A080825
KEYWORD
nonn,tabf
AUTHOR
Rémy Sigrist, Oct 31 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 26 07:40 EDT 2024. Contains 375454 sequences. (Running on oeis4.)