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!)
A323251 Sequence lists numbers k > 1 such that k^4 == d(k) (mod sigma(k)), where d = A000005 and sigma = A000203. 3
22, 80, 625, 1664, 2392, 4030, 5434, 5830, 6118, 6536, 9614, 11438, 12958, 13184, 15064, 15314, 17528, 18632, 18970, 22570, 23254, 25234, 29810, 32128, 33784, 34846, 36938, 37910, 40610, 43054, 46664, 52936, 53354, 58102, 58646, 60298, 79378, 79864, 83266, 92302, 93056 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Solutions of k^4 mod sigma(k) = d(k).
EXAMPLE
sigma(22) = 36 and 22^4 mod 36 = 4 = d(22).
MAPLE
with(numtheory): op(select(n->n^4 mod sigma(n)=tau(n), [$1..92302]));
MATHEMATICA
Select[Range[10^5], PowerMod[#1, 4, #3] == #2 & @@ Prepend[DivisorSigma[{0, 1}, #], #] &] (* Michael De Vlieger, Jan 18 2019 *)
PROG
(PARI) for(k=1, 10^5, x=sigma(k); if(Mod(k, x)^4==Mod(numdiv(k), x), print1(k, ", "))) \\ Jinyuan Wang, Feb 03 2019
CROSSREFS
Sequence in context: A075252 A253304 A094844 * A010010 A237618 A105101
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Jan 08 2019
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 13:00 EDT 2024. Contains 371945 sequences. (Running on oeis4.)