login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A099741 a(1) = a(2) = 1; a(n) = a([n/2])+a([n/3]) (n >= 3). 1
1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Let f = f[x,y] be a Fibonacci variant with recurrence f(1) = f(2) = 1; f(n) = f(ceiling((n-1)/x))+f(ceiling((n-2)/y)). This sequence is f[2,3].
Nondecreasing. Increases only when n is of the form 2^x*3^y.
By the Akra-Bazzi theorem, we have a(n) = Theta(n^e), where e ~ 0.78788491102586978 is the root of the equation (1/2)^e + (1/3)^e = 1. - Jeffrey Shallit, Mar 15 2018
LINKS
FORMULA
G.f. g(x) satisfies g(x) = x + (1+x)*g(x^2) + (1+x+x^2)*g(x^3). - Robert Israel, Mar 15 2018
EXAMPLE
a(19) = a([19/2])+a([19/3]) = a(9)+a(6) = 4+3 = 7.
MAPLE
f:= proc(n) option remember; procname(floor(n/2))+procname(floor(n/3)) end proc:
f(1):= 1: f(2):= 1:
map(f, [$1..100]); # Robert Israel, Mar 15 2018
MATHEMATICA
a[1] = a[2] = 1;
a[n_] := a[n] = a[Floor[n/2]] + a[Floor[n/3]];
Array[a, 100] (* Jean-François Alcover, Aug 28 2020 *)
CROSSREFS
Cf. A088468.
Sequence in context: A082964 A285524 A209356 * A047743 A062299 A157685
KEYWORD
easy,nonn
AUTHOR
Darrell Minor, Nov 09 2004
EXTENSIONS
Name corrected by Robert Israel, Mar 15 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 15:04 EDT 2024. Contains 371914 sequences. (Running on oeis4.)