OFFSET
1,2
COMMENTS
The first term that occurs in two different ways is 1814526 = a(3555) = 2*a(2385) + 2 = 7*a(1170) + 7. - Robert Israel, May 11 2025
REFERENCES
C. Pickover, Wonders of Numbers, Chap. 67 Katydid sequences, Oxford University Press, NY 2001, p. 164-165.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
C. A. Pickover, "Wonders of Numbers, Adventures in Mathematics, Mind and Meaning," Zentralblatt review
MAPLE
with(priqueue):
initialize(pq);
insert([-1], pq);
R:= NULL: count:= 0:
while count < 100 do
v:= -op(extract(pq));
if v = w then next fi;
R:= R, v;
w:= v;
count:= count+1;
insert([-(2*v+2)], pq);
insert([-(7*v+7)], pq);
od:
R; # Robert Israel, May 11 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Mar 17 2001
EXTENSIONS
Corrected and extended by Larry Reeves (larryr(AT)acm.org), Apr 20 2001
STATUS
approved
