This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A356609 #30 Aug 08 2023 03:22:18 %S A356609 6,8,10,12,14,16,18,20,24,28,30,32,36,40,42,44,48,50,52,54,56,60,64, %T A356609 66,70,72,78,80,84,88,90,96,98,100,102,104,108,110,112,114,120,126, %U A356609 128,130,132,136,138,140,144,150,152,154,156,160,162,168,170,174,176,180,182,184,186,190 %N A356609 Numbers k that can be written as the sum of 6 divisors of k (not necessarily distinct). %C A356609 Numbers divisible by at least one of 6, 8, 10, 14, 44, 52. For proof see link. - _Robert Israel_, Sep 02 2022 %C A356609 The asymptotic density of this sequence is 483/1430. - _Amiram Eldar_, Aug 08 2023 %H A356609 Robert Israel, <a href="/A356609/b356609.txt">Table of n, a(n) for n = 1..10000</a> %H A356609 Robert Israel, <a href="/A356609/a356609.pdf">Proof that A356609 consists of all numbers divisible by at least one of 6, 8, 10, 14, 44, 52</a>. %e A356609 18 is in the sequence since 18 = 9+2+2+2+2+1, where each summand divides 18. %p A356609 filter:= n-> ormap(t -> n mod t = 0, [6,8,10,14,44,52]): %p A356609 select(filter, [$1..200]); # _Robert Israel_, Sep 02 2022 %t A356609 q[n_, k_] := AnyTrue[Tuples[Divisors[n], k], Total[#] == n &]; Select[Range[200], q[#, 6] &] (* _Amiram Eldar_, Aug 19 2022 *) %o A356609 (PARI) isok(k) = my(d=divisors(k)); forpart(p=k, if (setintersect(d, Set(p)) == Set(p), return(1)), , [6,6]); \\ _Michel Marcus_, Aug 19 2022 %Y A356609 Numbers k that can be written as the sum of j divisors of k (not necessarily distinct) for j=1..10: A000027 (j=1), A299174 (j=2), A355200 (j=3), A354591 (j=4), A355641 (j=5), this sequence (j=6), A356635 (j=7), A356657 (j=8), A356659 (j=9), A356660 (j=10). %K A356609 nonn %O A356609 1,1 %A A356609 _Wesley Ivan Hurt_, Aug 18 2022