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.

A212336 Expansion of 1/(1 - 23*x + 23*x^2 - x^3).

Original entry on oeis.org

1, 23, 506, 11110, 243915, 5355021, 117566548, 2581109036, 56666832245, 1244089200355, 27313295575566, 599648413462098, 13164951800590591, 289029291199530905, 6345479454589089320, 139311518709760434136, 3058507932160140461673
Offset: 0

Views

Author

Bruno Berselli, Jun 08 2012

Keywords

Comments

Partial sums of A077421.

Crossrefs

Sequences with g.f. of the type 1/(1-k*x+k*x^2-x^3): A334673 (k=24), A212336 (k=23), A212335 (k=22), A097833 (k=21), A097832 (k=20), A049664 (k=19), A097831-A097829 (k=18,17,16), A076139 (k=15), A097828-A097826 (k=14,13,12), A097784 (k=11), A092420 (k=10), A076765 (k=9), A092521 (k=8), A053142 (k=7), A089817(k=6), A061278 (k=5), A027941 (k=4), A000217 (k=3), A021823 (k=2), A133872 (k=1), A079978 (k=0).

Programs

  • Magma
    m:=17; R:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1-23*x+23*x^2-x^3)));
    
  • Magma
    I:=[1,23,506]; [n le 3 select I[n] else 23*Self(n-1)-23*Self(n-2)+Self(n-3): n in [1..20]]; // Vincenzo Librandi, Aug 18 2013
    
  • Maple
    a:= n-> (<<0|1|0>, <0|0|1>, <1|-23|23>>^n. <<1, 23, 506>>)[1, 1]:
    seq(a(n), n=0..20);  # Alois P. Heinz, Jun 15 2012
  • Mathematica
    CoefficientList[Series[1/(1 - 23 x + 23 x^2 - x^3), {x, 0, 16}], x]
    LinearRecurrence[{23, -23, 1}, {1, 23, 506}, 20] (* Vincenzo Librandi, Aug 18 2013 *)
  • Maxima
    makelist(coeff(taylor(1/(1-23*x+23*x^2-x^3), x, 0, n), x, n), n, 0, 16);
    
  • PARI
    Vec(1/(1-23*x+23*x^2-x^3)+O(x^17))
    
  • Sage
    [(1/20)*(-1 +21*chebyshev_U(n, 11) -chebyshev_U(n-1, 11)) for n in (0..30)] # G. C. Greubel, Feb 07 2022

Formula

G.f.: 1/((1-x)*(1 - 22*x + x^2)).
a(n) = (((6+sqrt(30))^(2*n+3) + (6-sqrt(30))^(2*n+3))/6^(n+1) - 12)/240.
a(n) = a(-n-3) = 23*a(n-1) - 23*a(n-2) + a(n-3).
a(n)*a(n+2) = a(n+1)*(a(n+1)-1).
a(n+1) - 11*a(n) = A133285(n+2).
11*a(n+1) - a(n) = (1/5)*A157096(n+2).
a(n) = (1/20)*(-1 + 21*ChebyshevU(n, 11) - ChebyshevU(n-1, 11)). - G. C. Greubel, Feb 07 2022

A160695 Integers m such that 3*m+1 and 7*m+1 are both perfect squares.

Original entry on oeis.org

0, 5, 120, 2760, 63365, 1454640, 33393360, 766592645, 17598237480, 403992869400, 9274237758725, 212903475581280, 4887505700610720, 112199727638465285, 2575706229984090840, 59129043561995624040, 1357392295695915262085, 31160893757444055403920
Offset: 1

Views

Author

Paul Weisenhorn, May 24 2009

Keywords

Comments

The ansatz 3*a(n)+1=A^2, 7*a(n)+1=B^2 is equivalent to the Pell equation x^2-21*y^2=1 (see A077232 for d=21), with x=(21*a(n)+5)/2 and y=A*B/2.
The associated A are in A004253, the B in A030221.
Bisection of A089927. - R. J. Mathar, Jul 10 2009

Crossrefs

Programs

  • Maple
    j:=0: for n from 0 to 1000000 do a:=sqrt(3*n+1): b:=sqrt(7*n+1):
    if (trunc(a)=a) and (trunc(b)=b) then j:=j+1: print(j,n,a,b): end if:
    end do:
  • Mathematica
    LinearRecurrence[{24,-24,1},{0,5,120},30] (* Harvey P. Dale, Dec 17 2013 *)

Formula

a(n) = 24*a(n-1) - 24*a(n-2) + a(n-3).
a(n) = (A004253(n)^2 - 1)/3 = (A030221(n)^2 - 1)/7.
a(n) = ((5+w)/2*((23+5*w)/2)^(n-1) + (5-w)/2*((23-5*w)/2)^(n-1) - 5)/21; where w=sqrt(21). [Corrected by Kevin Ryde, Sep 11 2020]
G.f.: 5*x^2/((1-x)*(x^2-23*x+1)). - R. J. Mathar, Jul 10 2009
From Francesca Arici, Sep 12 2020: (Start)
a(n) = 23*a(n-1) - a(n-2) + 5.
a(n) = A004254(n)* A004254(n+1). (End)
a(n) = 5*A334673(n-1). - Hugo Pfoertner, Apr 07 2021

Extensions

Edited and extended by R. J. Mathar, Jul 10 2009
Name edited by Michel Marcus, Sep 12 2020
Showing 1-2 of 2 results.