login
A022381
Fibonacci sequence beginning 3, 15.
1
3, 15, 18, 33, 51, 84, 135, 219, 354, 573, 927, 1500, 2427, 3927, 6354, 10281, 16635, 26916, 43551, 70467, 114018, 184485, 298503, 482988, 781491, 1264479, 2045970, 3310449, 5356419, 8666868, 14023287, 22690155, 36713442, 59403597, 96117039, 155520636
OFFSET
0,1
FORMULA
G.f.: (3+12*x)/(1-x-x^2). - Philippe Deléham, Nov 19 2008
From G. C. Greubel, Dec 25 2025: (Start)
a(n) = 3*A022095(n).
E.g.f.: 3*(cosh(sqrt(5)*x/2) + (9/sqrt(5))*sinh(sqrt(5)*x/2))*exp(x/2). (End)
MATHEMATICA
LinearRecurrence[{1, 1}, {3, 15}, 40] (* Harvey P. Dale, May 27 2012 *)
PROG
(Magma)
[3*GeneralizedFibonacciNumber(1, 5, n): n in [0..50]]; // G. C. Greubel, Dec 25 2025
(SageMath)
A022381= BinaryRecurrenceSequence(1, 1, 3, 15)
print([A022381(n) for n in range(51)]) # G. C. Greubel, Dec 25 2025
CROSSREFS
Sequence in context: A236526 A039559 A045753 * A206367 A039570 A032644
KEYWORD
nonn,easy
STATUS
approved