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.

A162757 a(n) = 12*a(n-1)-33*a(n-2) for n > 1; a(0) = 1, a(1) = 7.

Original entry on oeis.org

1, 7, 51, 381, 2889, 22095, 169803, 1308501, 10098513, 78001623, 602768547, 4659169005, 36018666009, 278471414943, 2153041001019, 16646935319109, 128712870795681, 995205584017575, 7694942271953427, 59497522990861149
Offset: 0

Views

Author

Klaus Brockhaus, Jul 13 2009

Keywords

Comments

Sixth binomial transform of A108411. Binomial transform of A162558. Inverse binomial transform of A162758.

Crossrefs

Cf. A108411 (powers of 3 repeated), A162558, A162758.

Programs

  • Magma
    [ n le 2 select 6*n-5 else 12*Self(n-1)-33*Self(n-2): n in [1..20] ];

Formula

a(n) = ((3+sqrt(3))*(6+sqrt(3))^n+(3-sqrt(3))*(6-sqrt(3))^n)/6.
G.f.: (1-5*x)/(1-12*x+33*x^2).

A162759 a(n) = 16*a(n-1)-61*a(n-2) for n > 1; a(0) = 1, a(1) = 9.

Original entry on oeis.org

1, 9, 83, 779, 7401, 70897, 682891, 6601539, 63968273, 620798489, 6030711171, 58622670907, 570089353081, 5545446723969, 53951697045563, 524954902566899, 5108224921291041, 49709349684075817, 483747874746459571
Offset: 0

Views

Author

Klaus Brockhaus, Jul 13 2009

Keywords

Comments

Eighth binomial transform of A108411. Binomial transform of A162758.

Crossrefs

Cf. A108411 (powers of 3 repeated), A162758.

Programs

  • Magma
    [ n le 2 select 8*n-7 else 16*Self(n-1)-61*Self(n-2): n in [1..19] ];
  • Mathematica
    LinearRecurrence[{16,-61},{1,9},30] (* Harvey P. Dale, Jan 18 2014 *)

Formula

a(n) = ((3+sqrt(3))*(8+sqrt(3))^n+(3-sqrt(3))*(8-sqrt(3))^n)/6.
G.f.: (1-7*x)/(1-16*x+61*x^2).
Showing 1-2 of 2 results.