cp's OEIS Frontend

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.

A271101 Squarefree semiprimes (A006881) whose average prime factor is prime.

This page as a plain text file.
%I A271101 #14 Dec 15 2019 08:36:57
%S A271101 21,33,57,69,85,93,129,133,145,177,205,213,217,237,249,253,265,309,
%T A271101 393,417,445,469,489,493,505,517,553,565,573,597,633,669,685,697,753,
%U A271101 781,793,813,817,865,889,913,933,949,973,985,993,1057,1077,1137,1149,1177,1257,1273,1285,1329
%N A271101 Squarefree semiprimes (A006881) whose average prime factor is prime.
%C A271101 Sum of factors of a(n) if semiprime (product 2*p, with p prime).
%C A271101 This sequence is subsequence of A006881, A089765, A187073, A108633 and A213015.
%C A271101 This sequence is also subsequence of A045835, because sopfr(omega(a(n))) = omega(sopfr(a(n))): sopfr(omega(a(n)))=sopfr(2)=2, and omega(sopfr(a(n)))=omega(2*p)=2  (p prime,  p>2, average prime factor).
%H A271101 Robert Israel, <a href="/A271101/b271101.txt">Table of n, a(n) for n = 1..10000</a>
%e A271101 133 is in the sequence because 133 is a squarefree semiprime: 133=7*19, and (7+19)/2=13, a prime number.
%p A271101 N:= 10000: # for terms <= N
%p A271101 Primes:= select(isprime, [seq(i, i=3..N/3)]):
%p A271101 SP:= [seq(seq([p, q], q = select(`<=`, Primes, min(p-1, N/p))), p=Primes)]:
%p A271101 B:= select(t -> isprime((t[1]+t[2])/2), SP):
%p A271101 sort(map(t -> t[1]*t[2], B)); # _Robert Israel_, Dec 14 2019
%t A271101 Select[Select[Range@ 1330, SquareFreeQ@ # && PrimeOmega@ # == 2 &], PrimeQ@ Mean[First /@ FactorInteger@ #] &] (* _Michael De Vlieger_, Mar 30 2016 *)
%o A271101 (PARI)
%o A271101 sopf(n)= { local(f, s=0); f=factor(n); for(i=1, matsize(f)[1], s+=f[i, 1]); return(s) }
%o A271101 {for (n=6, 2*10^3,  if(bigomega(n)==2&&omega(n)==2, m=sopf(n)/2;if(m==truncate(m),if(isprime(m), print1(n, ", ")))))}
%Y A271101 Cf. A006881, A046315, A046388, A115585, A187073, A089765, A108633, A213015.
%K A271101 nonn
%O A271101 1,1
%A A271101 _Antonio Roldán_, Mar 30 2016