OFFSET
1,1
COMMENTS
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 3, 23, 221, 2194, 21895, 219307, 2193435, 21937419, 219396872, 2193979781, ... . Apparently, the asymptotic density of this sequence exists and equals 0.219... . - Amiram Eldar, Jul 02 2022
Numbers k such that A292269(k) is composite, which must then be a square of prime (A001248) by necessity. - Antti Karttunen, Jul 02 2022
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
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 *)
PROG
(PARI)
A355453(n) = ((n>1) && !isprime(n) && !isprime(divisors(n)[3]));
isA119315(n) = A355453(n); \\ Antti Karttunen, Jul 02 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 15 2006
STATUS
approved