login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A090991 Number of meaningful differential operations of the n-th order on the space R^6. 4
6, 10, 16, 26, 42, 68, 110, 178, 288, 466, 754, 1220, 1974, 3194, 5168, 8362, 13530, 21892, 35422, 57314, 92736, 150050, 242786, 392836, 635622, 1028458, 1664080, 2692538, 4356618, 7049156, 11405774, 18454930, 29860704, 48315634, 78176338, 126491972 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

REFERENCES

B. Malesevic: Some combinatorial aspects of differential operation composition on the space R^n, Univ. Beograd, Publ. Elektrotehn. Fak., Ser. Mat. 9 (1998), 29-33.

LINKS

Index entries for sequences related to linear recurrences with constant coefficients

Tanya Khovanova, Recursive Sequences

B. Malesevic, Some combinatorial aspects of differential operation composition on the space R^n

FORMULA

a(k+4)=3*a(k+2)-a(k), a(k)=2*Fib(k+3)

a(n)=a(n-1)+a(n-2), n>2 ; a(1)=6, a(2)=10 . G.f.: (6x+4x^2)/(1-x-x^2). [From Philippe DELEHAM (kolotoko(AT)wanadoo.fr), Nov 19 2008]

MAPLE

NUM := proc(k :: integer) local i, j, n, Fun, Identity, v, A; n := 6; # <- DIMENSION Fun := (i, j)->piecewise(((j=i+1) or (i+j=n+1)), 1, 0); Identity := (i, j)->piecewise(i=j, 1, 0); v := matrix(1, n, 1); A := piecewise(k>1, (matrix(n, n, Fun))^(k-1), k=1, matrix(n, n, Identity)); return(evalm(v&*A&*transpose(v))[1, 1]); end:

MATHEMATICA

CoefficientList[Series[-(2 (2 z + 3))/(z^2 + z - 1), {z, 0, 200}], z] (* From Vladimir Joseph Stephan Orlovsky, Jun 11 2011 *)

CROSSREFS

Cf. A055389, A068922, A078642, A090989-A090995.

Essentially the same as A006355.

Sequence in context: A114975 A079329 A020741 * A019533 A053301 A049302

Adjacent sequences:  A090988 A090989 A090990 * A090992 A090993 A090994

KEYWORD

nonn,easy

AUTHOR

Branko Malesevic (malesevic(AT)kiklop.etf.bg.ac.yu), Feb 29 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 11:03 EST 2012. Contains 205763 sequences.