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!)
A047232 Smallest k > n where n is a 4th power modulo k. 3
1, 2, 7, 6, 6, 10, 10, 9, 14, 11, 15, 14, 22, 17, 22, 21, 17, 19, 21, 27, 22, 25, 26, 29, 29, 27, 37, 33, 31, 46, 34, 33, 46, 34, 37, 38, 38, 41, 43, 42, 41, 43, 47, 49, 49, 55, 49, 53, 52, 53, 62, 59, 54, 58, 57, 57, 61, 59, 61, 62, 66, 65, 67, 74, 66, 67, 75, 77, 76, 73, 74 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) = n+1 for n+1 in A192453. - Robert Israel, May 24 2019
LINKS
MAPLE
N:= 100: # for a(0)..a(N)
V:= Array(0..N):
count:= 1: V[0]:= 1:
for k from 2 while count < N+1 do
R:= select(t -> t <= N and V[t] = 0, {seq(x^4 mod k, x=1..k/2)});
V[convert(R, list)]:= k;
count:= count + nops(R);
od:
convert(V, list); # Robert Israel, May 24 2019
PROG
(PARI) a(n) = {my(k=n+1); while (!ispower(Mod(n, k), 4), k++); k; } \\ Michel Marcus, May 25 2019
CROSSREFS
Cf. A192453.
Sequence in context: A047224 A127817 A199173 * A103557 A210963 A210965
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, Jun 08 2000
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)