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!)
A093967 a(n) = n * Pell(n). 13
0, 1, 4, 15, 48, 145, 420, 1183, 3264, 8865, 23780, 63151, 166320, 434993, 1130948, 2925375, 7533312, 19323713, 49395780, 125877071, 319888560, 810893265, 2050891876, 5176349663, 13040153280, 32793453025, 82337215012, 206424991215 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Binomial transform of A093968.
LINKS
Rigoberto Flórez, Robinson Higuita and Alexander Ramírez, The resultant, the discriminant, and the derivative of generalized Fibonacci polynomials, arXiv:1808.01264 [math.NT], 2018.
FORMULA
G.f.: x*(1+x^2)/(1 - 2*x - x^2)^2;
a(n) = n*((1+sqrt(2))^n - (1-sqrt(2))^n)/(2*sqrt(2));
a(n) = n * A000129(n).
MAPLE
seq(fibonacci(n, 2)*n, n=0..27); # Zerinvary Lajos, Apr 05 2008
MATHEMATICA
LinearRecurrence[{4, -2, -4, -1}, {0, 1, 4, 15}, 30] (* Vincenzo Librandi, Dec 20 2015 *)
PROG
(PARI) { default(realprecision, 100); s=sqrt(2); for (n=0, 100, a=n*round(((1+s)^n-(1-s)^n)/(2*s)); write("b093967.txt", n, " ", a); ) } \\ Harry J. Smith, Jun 17 2009
(Magma) I:=[0, 1, 4, 15]; [n le 4 select I[n] else 4*Self(n-1)-2*Self(n-2)-4*Self(n-3)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Dec 20 2015
(Sage) [n*lucas_number1(n, 2, -1) for n in (0..30)] # G. C. Greubel, Dec 28 2021
CROSSREFS
Sequence in context: A240333 A227099 A225976 * A052201 A320460 A178704
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Apr 21 2004
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 June 22 10:19 EDT 2024. Contains 373568 sequences. (Running on oeis4.)