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

A068628
Numbers occurring twice in A068627.
2
0, 60, 216, 468, 816, 1260, 1800, 2436, 3168, 3996, 4920, 5940, 7056, 8268, 9576, 10980, 12480, 14076, 15768, 17556, 19440, 21420, 23496, 25668, 27936, 30300, 32760, 35316, 37968, 40716, 43560, 46500, 49536, 52668, 55896, 59220, 62640, 66156, 69768, 73476
OFFSET
1,2
COMMENTS
Recall that A068627 is defined as follows: a(0) = 0, a(n) = a(n-1) + n if n does not divide a(n-1), a(n) = a(n-1) - n if n divides a(n-1), a(n) = n if a(n-1) = 0.
A068627 begins: 0,1,3,0,4,9,15,22,30,39,49,60,48,61,75,60,...
Numbers occurring twice in A068627, like 0, 60 etc. are called nodes.
PROG
(PARI) already(val, v, nb)=for (i = 1, nb, if (val == v[i], return (1)); ); return (0);
lista(nn) = {preca = 0; vm = vector(nn); for (n=1, nn, vm[n] = preca; if (preca == 0, nexta = n, if (preca % n, nexta = preca + n, nexta = preca - n); ); if (already(preca, vm, n-1), print1(preca, ", ")); preca = nexta; ); } \\ Michel Marcus, Jan 23 2014
CROSSREFS
Sequence in context: A082529 A126248 A224335 * A256985 A075287 A277990
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Feb 26 2002
EXTENSIONS
Name and comments edited by Michel Marcus, Jan 23 2014
Offset changed to 1 and more terms from Michel Marcus, Jan 23 2014
STATUS
approved