cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A161728 a(n) = ((3+sqrt(3))*(4+sqrt(3))^n-(3-sqrt(3))*(4-sqrt(3))^n)/sqrt(12).

Original entry on oeis.org

1, 7, 43, 253, 1465, 8431, 48403, 277621, 1591729, 9124759, 52305595, 299822893, 1718610409, 9851185663, 56467549987, 323674986277, 1855321740385, 10634799101479, 60959210186827, 349421293175389, 2002900612974361, 11480728092514831, 65808116771451955, 377215468968922837
Offset: 0

Views

Author

Al Hakanson (hawkuu(AT)gmail.com), Jun 17 2009

Keywords

Comments

Fourth binomial transform of A162436, inverse binomial transform of A162272.
The inverse binomial transform yields A030192. The binomial transform yields A162272. - R. J. Mathar, Jul 07 2009

Crossrefs

Programs

  • PARI
    F=nfinit(x^2-3); for(n=0, 20, print1(nfeltdiv(F, ((3+x)*(4+x)^n-(3-x)*(4-x)^n), (2*x))[1], ",")) \\ Klaus Brockhaus, Jun 19 2009
    
  • PARI
    Vec((1-x)/(1-8*x+13*x^2)+O(x^25)) \\ M. F. Hasler, Dec 03 2014

Formula

a(n) = 8*a(n-1) - 13(n-2) for n > 1; a(0) = 1, a(1) = 7.
G.f.: (1 - x)/(1 - 8*x + 13*x^2). - Klaus Brockhaus, Jun 19 2009
E.g.f.: exp(4*x)*(cosh(sqrt(3)*x) + sqrt(3)*sinh(sqrt(3)*x)). - Stefano Spezia, Dec 31 2022

Extensions

Extended beyond a(5) by Klaus Brockhaus, Jun 19 2009
Edited by Klaus Brockhaus, Jul 05 2009; M. F. Hasler, Dec 03 2014

A162466 a(n) = 12*a(n-2) for n > 2; a(1) = 1, a(2) = 8.

Original entry on oeis.org

1, 8, 12, 96, 144, 1152, 1728, 13824, 20736, 165888, 248832, 1990656, 2985984, 23887872, 35831808, 286654464, 429981696, 3439853568, 5159780352, 41278242816, 61917364224, 495338913792, 743008370688, 5944066965504
Offset: 1

Views

Author

Klaus Brockhaus, Jul 04 2009

Keywords

Comments

Eighth binomial transform is A161729.

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{0,12},{1,8},30] (* Harvey P. Dale, Sep 17 2020 *)
  • PARI
    {m=24; v=concat([1, 8], vector(m-2)); for(n=3, m, v[n]=12*v[n-2]); v}
    
  • PARI
    Vec(x*(1+8*x)/(1-12*x^2)+O(x^29)) \\ M. F. Hasler, Dec 03 2014

Formula

a(n) = (5-(-1)^n)*2^(1/2 *(2*n-3+(-1)^n))*3^(1/4*(2*n-5+(-1)^n)).
G.f.: x*(1+8*x)/(1-12*x^2).
a(n) = 2^(n-1)*A074324(n). - M. F. Hasler, Dec 03 2014

Extensions

G.f. and comment corrected, formula added by Klaus Brockhaus, Sep 18 2009
Showing 1-2 of 2 results.