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 A065119 #61 Jul 13 2024 10:13:07 %S A065119 3,6,9,12,18,24,27,36,48,54,72,81,96,108,144,162,192,216,243,288,324, %T A065119 384,432,486,576,648,729,768,864,972,1152,1296,1458,1536,1728,1944, %U A065119 2187,2304,2592,2916,3072,3456,3888,4374,4608,5184,5832,6144,6561,6912,7776,8748,9216 %N A065119 Numbers k such that the k-th cyclotomic polynomial is a trinomial. %C A065119 Appears to be numbers of form 2^a * 3^b, a >= 0, b > 0. - _Lekraj Beedassy_, Sep 10 2004 %C A065119 This is true: see link "Cyclotomic trinomials". - _Robert Israel_, Jul 14 2015 %C A065119 3-smooth numbers (A003586) which are not powers of 2 (A000079). - _Amiram Eldar_, Nov 10 2020 %C A065119 These are the conjugates of semiprimes, where conjugation is A122111; or Heinz numbers of conjugates of length-2 partitions. - _Gus Wiseman_, Nov 09 2023 %C A065119 A multiplicative semigroup: if m and n are in the sequence, then so is m*n. - _Antti Karttunen_, Jul 13 2024 %D A065119 Jean-Marie De Koninck and Armel Mercier, 1001 Problèmes en Théorie Classique Des Nombres, Problem 733, pp. 74 and 310, Ellipses Paris, 2004. %H A065119 Robert Israel, <a href="/A065119/b065119.txt">Table of n, a(n) for n = 1..10000</a> %H A065119 Robert Israel, <a href="/A065119/a065119.pdf">Cyclotomic trinomials</a> %F A065119 A206787(a(n)) = 4. - _Reinhard Zumkeller_, Feb 12 2012 %F A065119 a(n) = A033845(n)/2 = 3 * A003586(n). - _Robert Israel_, Jul 14 2015 %F A065119 Sum_{n>=1} 1/a(n) = 1. - _Amiram Eldar_, Nov 10 2020 %e A065119 The 54th cyclotomic polynomial is x^18 - x^9 + 1 which is trinomial, so 54 is in the sequence. %e A065119 From _Gus Wiseman_, Nov 09 2023: (Start) %e A065119 The terms and conjugate semiprimes, showing their respective Heinz partitions, begin: %e A065119 3: (2) 4: (1,1) %e A065119 6: (2,1) 6: (2,1) %e A065119 9: (2,2) 9: (2,2) %e A065119 12: (2,1,1) 10: (3,1) %e A065119 18: (2,2,1) 15: (3,2) %e A065119 24: (2,1,1,1) 14: (4,1) %e A065119 27: (2,2,2) 25: (3,3) %e A065119 36: (2,2,1,1) 21: (4,2) %e A065119 48: (2,1,1,1,1) 22: (5,1) %e A065119 54: (2,2,2,1) 35: (4,3) %e A065119 72: (2,2,1,1,1) 33: (5,2) %e A065119 81: (2,2,2,2) 49: (4,4) %e A065119 96: (2,1,1,1,1,1) 26: (6,1) %e A065119 (End) %p A065119 with(numtheory): a := []; for m from 1 to 3000 do if nops([coeffs(cyclotomic(m,x))])=3 then a := [op(a),m] fi od; print(a); %t A065119 max = 5000; Sort[Flatten[Table[2^a 3^b, {a, 0, Floor[Log[2, max]]}, {b, Floor[Log[3, max/2^a]]}]]] (* _Alonso del Arte_, May 19 2016 *) %o A065119 (PARI) isok(n)=my(vp = Vec(polcyclo(n))); sum(k=1, #vp, vp[k] != 0) == 3; \\ _Michel Marcus_, Jul 11 2015 %o A065119 (PARI) list(lim)=my(v=List(),N); for(n=1,logint(lim\1,3), N=3^n; while(N<=lim, listput(v,N); N<<=1)); Set(v) \\ _Charles R Greathouse IV_, Aug 07 2015 %Y A065119 Differs at the 18th term from A063996. %Y A065119 Cf. A003586, A033845, A206787. %Y A065119 For primes (A008578) we have conjugates A000079. %Y A065119 For triprimes (A014612) we have conjugates A080193. %Y A065119 A001358 lists semiprimes, squarefree A006881, complement A100959. %Y A065119 Cf. A000040, A000720, A001248, A046682, A056239, A086971, A122111, A220264. %K A065119 nonn %O A065119 1,1 %A A065119 _Len Smiley_, Nov 12 2001 %E A065119 Offset set to 1 and more terms from _Michel Marcus_, Jul 11 2015