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!)
A170819 a(n) = product of distinct primes of the form 4k-1 that divide n. 6

%I #23 Jul 06 2023 08:55:11

%S 1,1,3,1,1,3,7,1,3,1,11,3,1,7,3,1,1,3,19,1,21,11,23,3,1,1,3,7,1,3,31,

%T 1,33,1,7,3,1,19,3,1,1,21,43,11,3,23,47,3,7,1,3,1,1,3,11,7,57,1,59,3,

%U 1,31,21,1,1,33,67,1,69,7,71,3,1,1,3,19,77,3,79,1,3,1,83,21,1

%N a(n) = product of distinct primes of the form 4k-1 that divide n.

%H Michael De Vlieger, <a href="/A170819/b170819.txt">Table of n, a(n) for n = 1..10000</a>

%F Multiplicative with a(p^e) = p^A011765(p+1), e > 0. - _R. J. Mathar_, Jun 07 2011

%F a(n) = A007947(A097706(n)) = A097706(A007947(n)). - _Peter Munn_, Jul 06 2023

%p A170819 := proc(n) a := 1 ; for p in numtheory[factorset](n) do if p mod 4 = 3 then a := a*p ; end if; end do: a ; end proc:

%p seq(A170819(n),n=1..20) ; # _R. J. Mathar_, Jun 07 2011

%t Array[Times @@ Select[FactorInteger[#][[All, 1]], Mod[#, 4] == 3 &] &, 85] (* _Michael De Vlieger_, Feb 19 2019 *)

%o (PARI) for(n=1,99, t=select(x->x%4==3, factor(n)[,1]); print1(prod(i=1,#t,t[i])","))

%Y Cf. A007947, A011765, A065339, A097706, A170817, A170818, A363340.

%K nonn,mult

%O 1,3

%A _N. J. A. Sloane_, Dec 23 2009

%E Extended with PARI program by _M. F. Hasler_, Dec 23 2009

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)