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

A301483
a(n) = floor(a(n-1)/(2^(1/3)-1)) with a(1)=1.
2
1, 3, 11, 42, 161, 619, 2381, 9160, 35241, 135583, 521631, 2006882, 7721121, 29705639, 114287161, 439699520, 1691665681, 6508382763, 25039844851, 96336348522, 370636962881, 1425959779059, 5486126574341, 21106896023080, 81205027571321, 312421897357543
OFFSET
1,2
COMMENTS
a(n+1)/a(n) approaches 1/(2^(1/3)-1).
FORMULA
Conjectures from Colin Barker, Apr 01 2018: (Start)
G.f.: x*(1 - x - x^2) / ((1 - x)*(1 - 3*x - 3*x^2 - x^3)).
a(n) = 4*a(n-1) - 2*a(n-3) - a(n-4) for n>4.
(End)
a(n) = A195350(n) + A303647(n-2) - A195339(n-4) (conjectured).
MAPLE
a:=proc(n) option remember;
if n<1 then 0 else if n=1 then 1 else floor(a(n-1)/(2^(1/3)-1))
end if end if end proc:
seq(a(n), n=1..25);
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==Floor[a[n-1]/(2^(1/3)-1)]}, a, {n, 30}] (* Vincenzo Librandi, Apr 04 2018 *)
PROG
(PARI) a=vector(50); a[1]=1; for(n=2, #a, a[n]=a[n-1]\(2^(1/3)-1)); a \\ Altug Alkan, Mar 22 2018
(Magma) [n le 1 select 1 else Floor(Self(n-1)/(2^(1/3)-1)): n in [1..30]]; // Vincenzo Librandi, Apr 04 2018
CROSSREFS
Cf. A024537, A195350 (also has 1/(2^(1/3)-1) ratio), A303647.
Sequence in context: A106460 A319512 A279704 * A059716 A122368 A344191
KEYWORD
nonn
AUTHOR
STATUS
approved