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!)
A176255 Numbers of the form 4k-1 with least prime divisor of the form 4m+1. 9

%I #19 Sep 08 2022 08:45:52

%S 35,55,95,115,155,175,215,235,247,275,295,299,323,335,355,391,395,403,

%T 415,455,475,515,527,535,559,575,595,611,635,655,695,715,731,755,767,

%U 775,799,815,835,871,875,895,899,923,935,955,995,1003,1015,1027,1055

%N Numbers of the form 4k-1 with least prime divisor of the form 4m+1.

%C By definition, all terms are composite numbers.

%H Amiram Eldar, <a href="/A176255/b176255.txt">Table of n, a(n) for n = 1..10000</a>

%p A020639 := proc(n) if n = 1 then 1; else min(op(numtheory[factorset](n))) ; end if; end proc:

%p isA176255 := proc(n) (n mod 4 = 3) and ( A020639(n) mod 4 = 1) ; end proc:

%p for n from 3 to 1200 by 4 do if isA176255(n) then printf("%d,",n); end if; end do:

%p # _R. J. Mathar_, Oct 30 2010

%t Select[4 Range@ 265 - 1, Mod[#, 4] == 1 &[FactorInteger[#][[1, 1]]] &] (* _Michael De Vlieger_, Feb 07 2016 *)

%o (PARI) isok(n) = ((n % 4) == 3) && ((vecmin(factor(n)[,1]) % 4) == 1); \\ _Michel Marcus_, Feb 07 2016

%o (Magma) [n: n in [1..1500] | (n mod 4 eq 3) and (Min(PrimeFactors(n)) mod 4) eq 1]; // _Vincenzo Librandi_, Feb 07 2016

%Y Cf. A002148, A002145, A016813, A004767.

%K nonn

%O 1,1

%A _Vladimir Shevelev_, Apr 13 2010

%E Terms > 559 from _R. J. Mathar_, Oct 30 2010

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 12:11 EDT 2024. Contains 371792 sequences. (Running on oeis4.)