OFFSET
1,1
COMMENTS
1. Recall that f(n) = n/2 if n is even; = 3n + 1 if n is odd. 2. Problem: Is a(n) defined for all n, that is, does a positive integer solution k to h(n) = h(k-1)+h(k-2)+...+h(k-n) always exist?
EXAMPLE
k = 235 is the least k satisfying h(k) = h(k-1)+h(k-2)+h(k-3), so a(3) = 235.
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Joseph L. Pe, Dec 31 2002
EXTENSIONS
a(7) from Donovan Johnson, Nov 14 2010
STATUS
approved