A119315 Numbers with composite numbers as third divisors.
4, 8, 9, 16, 20, 25, 27, 28, 32, 40, 44, 49, 52, 56, 64, 68, 76, 80, 81, 88, 92, 99, 100, 104, 112, 116, 117, 121, 124, 125, 128, 136, 140, 148, 152, 153, 160, 164, 169, 171, 172, 176, 184, 188, 196, 200, 207, 208, 212, 220, 224, 232, 236, 243, 244, 248, 256, 260
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range[300],CompositeQ[Divisors[#][[3]]]&]//Quiet (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jun 03 2021 *) Select[Range[260], (f = FactorInteger[#])[[1, 2]] > 1 && (Length[f] == 1 || f[[1, 1]]^2 < f[[2, 1]]) &] (* Amiram Eldar, Jul 02 2022 *)
-
PARI
A355453(n) = ((n>1) && !isprime(n) && !isprime(divisors(n)[3])); isA119315(n) = A355453(n); \\ Antti Karttunen, Jul 02 2022
Comments