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”).

A366473
a(1) = 1; thereafter a(n) = A337136(n) + A337136(n-1).
2
1, 3, 5, 8, 9, 10, 14, 15, 16, 19, 29, 48, 41, 53, 94, 67, 81, 82, 31, 47, 78, 60, 31, 80, 82, 42, 43, 64, 67, 158, 160, 51, 42, 44, 38, 39, 58, 62, 66, 67, 234, 237, 75, 74, 72, 75, 78, 82, 86, 90, 91, 94, 97, 145, 147, 101, 152, 153, 106, 110, 111, 112, 115, 81, 83, 143, 148, 129, 127, 190, 193, 259, 263, 333, 332, 137, 205, 212, 147, 149, 226, 223, 297
OFFSET
1,2
LINKS
Michael De Vlieger, Log log scatterplot of a(n), n = 1..2^14, accentuating prime powers in red.
MATHEMATICA
nn = 120;
c[_] := False;
Array[Set[{a[#], c[#]}, {#, True}] &, 2]; Set[{i, j, u},
Range[3]]; s = i + j;
Do[k = u;
While[Or[c[k], CoprimeQ[s, k]], k++];
Set[{a[n], c[k], i, j, s}, {s, True, j, k, j + k}];
If[k == u, While[c[u], u++]], {n, 2, nn}], n];
Array[a, nn] (* Michael De Vlieger, Oct 26 2023 *)
CROSSREFS
Cf. A337136.
Sequence in context: A328066 A064186 A271048 * A189127 A189288 A190205
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 26 2023
STATUS
approved