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!)
A140211 a(n) = Product_{d == 3 (mod 4) and d|n} d. 3
1, 1, 3, 1, 1, 3, 7, 1, 3, 1, 11, 3, 1, 7, 45, 1, 1, 3, 19, 1, 21, 11, 23, 3, 1, 1, 81, 7, 1, 45, 31, 1, 33, 1, 245, 3, 1, 19, 117, 1, 1, 21, 43, 11, 45, 23, 47, 3, 7, 1, 153, 1, 1, 81, 605, 7, 57, 1, 59, 45, 1, 31, 1323, 1, 1, 33, 67, 1, 69, 245, 71, 3, 1, 1, 3375, 19, 77, 117, 79, 1, 81, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) | A007955(n). - R. J. Mathar, May 26 2016
MAPLE
A140211 := proc(n)
a := 1;
for d in numtheory[divisors](n) do
if modp(d, 4) = 3 then
a := a*d ;
end if;
end do:
a;
end proc: # R. J. Mathar, Dec 15 2015
MATHEMATICA
ListProduct[lst_] := Fold[Times, 1, lst] lst = {}; For[n = 1, n <= 1000, n++, AppendTo[lst, ListProduct[Select[Divisors[n], Mod[ #, 4] == 3 &]]]] lst (* Jasper Mulder (jasper.mulder(AT)planet.nl), Jul 15 2009 *)
PROG
(PARI) a(n) = my(p=1); fordiv(n, d, if ((d % 4)==3, p*=d)); p; \\ Michel Marcus, Jan 07 2021
CROSSREFS
Sequence in context: A345468 A351518 A170819 * A248101 A097706 A132740
KEYWORD
nonn,easy
AUTHOR
R. J. Mathar, Jun 27 2008
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)