login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A271101 Squarefree semiprimes (A006881) whose average prime factor is prime. 1
21, 33, 57, 69, 85, 93, 129, 133, 145, 177, 205, 213, 217, 237, 249, 253, 265, 309, 393, 417, 445, 469, 489, 493, 505, 517, 553, 565, 573, 597, 633, 669, 685, 697, 753, 781, 793, 813, 817, 865, 889, 913, 933, 949, 973, 985, 993, 1057, 1077, 1137, 1149, 1177, 1257, 1273, 1285, 1329 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sum of factors of a(n) if semiprime (product 2*p, with p prime).
This sequence is subsequence of A006881, A089765, A187073, A108633 and A213015.
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).
LINKS
EXAMPLE
133 is in the sequence because 133 is a squarefree semiprime: 133=7*19, and (7+19)/2=13, a prime number.
MAPLE
N:= 10000: # for terms <= N
Primes:= select(isprime, [seq(i, i=3..N/3)]):
SP:= [seq(seq([p, q], q = select(`<=`, Primes, min(p-1, N/p))), p=Primes)]:
B:= select(t -> isprime((t[1]+t[2])/2), SP):
sort(map(t -> t[1]*t[2], B)); # Robert Israel, Dec 14 2019
MATHEMATICA
Select[Select[Range@ 1330, SquareFreeQ@ # && PrimeOmega@ # == 2 &], PrimeQ@ Mean[First /@ FactorInteger@ #] &] (* Michael De Vlieger, Mar 30 2016 *)
PROG
(PARI)
sopf(n)= { local(f, s=0); f=factor(n); for(i=1, matsize(f)[1], s+=f[i, 1]); return(s) }
{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, ", ")))))}
CROSSREFS
Sequence in context: A084109 A016105 A187073 * A191683 A032603 A233562
KEYWORD
nonn
AUTHOR
Antonio Roldán, Mar 30 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 13:08 EDT 2024. Contains 371945 sequences. (Running on oeis4.)