login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A283482
Positions of even terms in A004001.
3
3, 4, 6, 7, 8, 10, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 31, 32, 34, 36, 39, 41, 42, 44, 45, 49, 52, 53, 54, 59, 60, 61, 62, 63, 64, 66, 68, 70, 71, 73, 75, 76, 78, 81, 84, 85, 86, 88, 91, 94, 95, 96, 98, 99, 103, 104, 105, 106, 108, 109, 113, 114, 115, 116, 122, 123, 124, 125, 126, 127, 128, 130, 132, 134, 137, 139, 141, 142, 144
OFFSET
1,1
LINKS
MATHEMATICA
a[n_] := a[n] = If[n <= 2, 1, a[a[n - 1]] + a[n - a[n - 1]]]; Select[Range@ 144, EvenQ@ a[#] &] (* Michael De Vlieger, Mar 18 2017, after Robert G. Wilson v at A004001 *)
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(define A283482 (ZERO-POS 1 1 A095901))
CROSSREFS
Cf. A283481 (complement), A283471 (a subsequence).
Positions of zeros in A095901.
Cf. A004001.
Sequence in context: A227019 A105454 A364006 * A283471 A127260 A089530
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 18 2017
STATUS
approved