|
| |
|
|
A075318
|
|
Pair the odd numbers such that the k-th pair is (r, r+2k) where r is the smallest odd number not included earlier: (1,3),(5,9),(7,13),(11,19),(15,25),(17,29),(21,35),(23,39),(27,45),... This is the sequence of the second member of pairs.
|
|
4
| |
|
|
3, 9, 13, 19, 25, 29, 35, 39, 45, 51, 55, 61, 67, 71, 77, 81, 87, 93, 97, 103, 107, 113, 119, 123, 129, 135, 139, 145, 149, 155, 161, 165, 171, 177, 181, 187, 191, 197, 203, 207, 213, 217, 223, 229, 233, 239, 245, 249, 255, 259, 265, 271, 275, 281, 285, 291, 297
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
MAPLE
| A075318 := proc(nmax) local r, k, a, pairs ; a := [3] ; pairs := [1, 3] ; k := 2 ; r := 5 ; while nops(a) < nmax do while r in pairs do r := r+2 ; od ; if r+2*k in pairs then printf("inconsistency", k) ; fi ; a := [op(a), r+2*k] ; pairs := [op(pairs), r, r+2*k] ; k := k+1 ; od ; RETURN(a) ; end: a := A075318(200) : for n from 1 to nops(a) do printf("%d, ", op(n, a)) ; od ; - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Nov 12 2006
|
|
|
CROSSREFS
| Cf. A075317, A075319, A075320.
Sequence in context: A095234 A032415 A190745 * A171101 A197569 A118570
Adjacent sequences: A075315 A075316 A075317 * A075319 A075320 A075321
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Sep 14 2002
|
|
|
EXTENSIONS
| More terms from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Nov 12 2006
|
| |
|
|