OFFSET
1,2
FORMULA
log a(n) grows like a constant times phi^n, where phi = golden ratio. - Colin Mallows
a(n) converges to a(n-2)*a(n-1)*phi (within 6 decimals for a(15)). - Johan Claes, Oct 02 2005
Limit_{n -> oo} a(n+2)/(a(n+1)*a(n)) = 1/phi. - Benoit Cloitre, Oct 13 2005
EXAMPLE
a(5)=5 because 5 is the last number of the 5th row of A014643, (1,2,2,3,3,4,4,4,5,5,5).
MATHEMATICA
NestList[Flatten@ MapIndexed[ConstantArray[First[#2], #1] &, #] &, {1, 1}, 8][[All, -1]] (* Michael De Vlieger, Dec 16 2021 *)
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
a(1)-a(11) computed by Colin Mallows
a(12)-a(15) computed by Johan Claes Oct 02 2005
STATUS
approved