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!)
A347863 Odd terms in A015782. 0
7, 21, 93, 357, 381, 681, 1541, 7181, 24573, 36893, 192061, 388669, 393213, 1505533, 1572861, 10678781, 24736253 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Odd numbers n such that phi(n)+3 divides sigma(n+3), where phi = A000010 and sigma = A000203.
LINKS
EXAMPLE
a(3) = 93 is a term because phi(93)+3 = 63 divides sigma(96) = 252 = 4*63.
MAPLE
filter:= proc(n) uses numtheory;
sigma(n+3) mod (3+phi(n)) = 0
end proc:
select(filter, [seq(i, i=1..2*10^6, 2)]);
MATHEMATICA
Select[Range[1, 2*10^6, 2], Divisible[DivisorSigma[1, # + 3], EulerPhi[#] + 3] &] (* Amiram Eldar, Jan 24 2022 *)
CROSSREFS
Sequence in context: A164544 A100025 A121157 * A253072 A261854 A219152
KEYWORD
nonn,more
AUTHOR
Robert Israel, Jan 24 2022
EXTENSIONS
a(16)-a(17) from Amiram Eldar, Jan 24 2022
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 25 13:01 EDT 2024. Contains 371969 sequences. (Running on oeis4.)