The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A349988 a(n) is the smallest k such that n^k + (n+1)^k is divisible by a square > 1. 2
3, 5, 2, 1, 11, 10, 3, 10, 19, 3, 10, 1, 1, 29, 26, 3, 5, 3, 3, 2, 2, 1, 10, 1, 3, 10, 5, 2, 9, 3, 1, 5, 10, 3, 39, 10, 1, 7, 21, 1, 5, 5, 3, 21, 7, 2, 5, 10, 1, 78, 10, 3, 2, 26, 3, 10, 5, 1, 7, 1, 3, 1, 10, 3, 21, 7, 1, 3, 68, 3, 2, 5, 1, 21, 26, 1, 5, 2, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(285) <= 111. - Kevin P. Thompson, Jan 13 2022
LINKS
FORMULA
a(9m-5) = 1 for m >= 1 since a(9m-5) = (9m-5)^1 + (9m-5+1)^1 = 18m-9 which is divisible by 9 = 3^2. - Kevin P. Thompson, Jan 13 2022
a(n) = 1 if n is in A046092; in this case, if n = A046092(m), then n^1 + (n+1)^1 = (2*m+1)^2. - Bernard Schott, Jan 17 2022
EXAMPLE
a(2) = 5 since the values of 2^k + (2+1)^k for k=1..4 are 5, 13, 35, and 97, none of which are divisible by a square > 1, and 2^5 + (2+1)^5 = 275 which is divisible by 25 = 5^2.
MATHEMATICA
Table[k=1; While[SquareFreeQ[n^k+(n+1)^k], k++]; k, {n, 33}] (* Giorgos Kalogeropoulos, Dec 08 2021 *)
PROG
(PARI) a(n) = my(k=1); while(issquarefree(n^k + (n+1)^k), k++); k; \\ Michel Marcus, Dec 08 2021
CROSSREFS
Sequence in context: A126353 A094791 A243524 * A272300 A115406 A059246
KEYWORD
nonn
AUTHOR
Jon E. Schoenfield, Dec 07 2021
EXTENSIONS
Thanks to Hugo Pfoertner for computing terms a(50) and a(68).
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 May 19 11:03 EDT 2024. Contains 372683 sequences. (Running on oeis4.)