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!)
A088595 Numbers n such that (A006530(n) + A020639(n))/2 is an integer, divides n and it is not a power of prime number: it has at least 2 distinct prime factors. Special terms of A088948. 4

%I #28 Nov 26 2016 16:15:59

%S 105,231,315,525,627,693,735,897,935,945,1155,1575,1581,1617,1729,

%T 1881,2079,2205,2465,2541,2625,2691,2835,2967,3135,3465,3525,3675,

%U 4123,4301,4389,4485,4675,4715,4725,4743,4851,5145,5487,5643,5775,6237,6279,6545

%N Numbers n such that (A006530(n) + A020639(n))/2 is an integer, divides n and it is not a power of prime number: it has at least 2 distinct prime factors. Special terms of A088948.

%C Every number of the sequence has at least three different prime factors. Also, the sequence is infinite (it contains all numbers of the form 3^a*5^b*7^c with a,b,c>0). - _Emmanuel Vantieghem_, Nov 21 2016

%H Robert Israel, <a href="/A088595/b088595.txt">Table of n, a(n) for n = 1..10000</a>

%e n = 315 = 3*3*5*7 is not a power of a prime, has 3 prime factors and (3+5)/2=7 divides n.

%p filter:= proc(n) local F;

%p F:= numtheory:-factorset(n);

%p nops(F) > 2 and n mod (min(F)+max(F))/2 = 0

%p end proc:

%p select(filter, [seq(i,i=1..10^4,2)]); # _Robert Israel_, Nov 21 2016

%t Rest@ Select[Range@ 6600, Function[n, And[IntegerQ@ #, Divisible[n, #], ! PrimePowerQ@ n] &[(#[[-1, 1]] + #[[1, 1]])/2] &@ FactorInteger@ n]] (* _Michael De Vlieger_, Nov 24 2016 *)

%Y Cf. A006530, A020639, A088948, A088949.

%K nonn

%O 1,1

%A _Labos Elemer_, Nov 20 2003

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)