login
A010037
Numbers n such that gcd(n^5 + 5, (n+1)^5 + 5) > 1.
1
533360, 2502111, 4470862, 6439613, 8408364, 10377115, 12345866, 14314617, 16283368, 18252119, 20220870, 22189621, 24158372, 26127123, 28095874, 30064625, 32033376, 34002127, 35970878
OFFSET
1,1
REFERENCES
George Berzsenyi, Quantum, Jan 01 1996.
LINKS
Tanya Khovanova, Recursive Sequences
Problem of the week, Web site - problem 805
MAPLE
a := n-> n*1968751+533360;
MATHEMATICA
Table[1968751 n + 533360, {n, 0, 40}] (* Vincenzo Librandi, Jun 21 2013 *)
LinearRecurrence[{2, -1}, {533360, 2502111}, 20] (* Harvey P. Dale, Dec 03 2022 *)
PROG
(PARI) a(n)=1968751*n+533360 \\ Charles R Greathouse IV, Jun 21 2013
(Magma) [1968751*n+533360: n in [0..30]]; // Vincenzo Librandi, Jun 21 2013
CROSSREFS
Sequence in context: A321816 A237480 A081637 * A061730 A235076 A344944
KEYWORD
nonn,easy
AUTHOR
Stan Wagon, Ilan Vardi
STATUS
approved