|
Search: id:A062063
|
|
|
| A062063 |
|
a(1) = 1; a(n+1) = smallest number so that the 5 numbers a(n-3), a(n-2), a(n-1), a(n), a(n+1) are pairwise coprime. |
|
+0 3
|
|
| 1, 2, 3, 5, 7, 11, 13, 16, 17, 19, 21, 23, 25, 26, 29, 31, 33, 35, 37, 38, 41, 43, 45, 47, 49, 52, 53, 55, 57, 59, 61, 62, 65, 67, 69, 71, 73, 74, 77, 79, 81, 83, 85, 86, 89, 91, 93, 95, 97, 101, 103, 104, 105, 107, 109, 113, 116, 117, 119, 121, 125, 127, 128, 129
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Is a(n+1) - a(n) bounded?
For n < 10^7, the maximum value of a(n+1) - a(n) is 12. - T. D. Noe, May 14 2007
|
|
LINKS
|
T. D. Noe, Table of n, a(n) for n=1..1000
|
|
PROGRAM
|
(PARI) { for (n=1, 1000, if (n>4, until (gcd(a, a1)==1 && gcd(a, a2)==1 && gcd(a, a3)==1 && gcd(a, a4)==1, a++); a4=a3; a3=a2; a2=a1; a1=a, if (n==1, a=a4=1, if (n==2, a=a3=2, if (n==3, a=a2=3, a=a1=5)))); write("b062063.txt", n, " ", a) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 31 2009]
|
|
CROSSREFS
|
Cf. A047255, A062062.
Sequence in context: A143578 A086070 A117093 this_sequence A167175 A026478 A154893
Adjacent sequences: A062060 A062061 A062062 this_sequence A062064 A062065 A062066
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jun 12 2001
|
|
EXTENSIONS
|
Corrected and extended by Dean Hickerson (dean.hickerson(AT)yahoo.com), Jul 10, 2001
|
|
|
Search completed in 0.002 seconds
|