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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A158753 Lucas even count down recursion:e(n,k)=(e(n - 1, k)*e(n, k - 1) + 1)/e(n - 1, k - 1) 1
1, 4, 1, 11, 4, 1, 29, 11, 4, 1, 76, 29, 11, 4, 1, 199, 76, 29, 11, 4, 1, 521, 199, 76, 29, 11, 4, 1, 1364, 521, 199, 76, 29, 11, 4, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

2,2

COMMENTS

Really slow backward recursion in Mathematica.

Row sums are:A004146;

{1, 5, 16, 45, 121,320, 841, 2205,...}.

REFERENCES

H. S. M. Coxeter, Regular Polytopes, 3rd ed., Dover, NY, 1973, pp 159-162

FORMULA

Every other result is a beta integer ( odd Phi factors, even Integers): e(n,k)=(e(n - 1, k)*e(n, k - 1) + 1)/e(n - 1, k - 1)

EXAMPLE

{1},

{4, 1},

{11, 4, 1},

{29, 11, 4, 1},

{76, 29, 11, 4, 1},

{199,76, 29, 11, 4, 1},

{521,199,76, 29, 11, 4, 1},

{1364,521,199,76, 29, 11, 4, 1}

MATHEMATICA

Clear[e, n, k];

e[n_, 0] := GoldenRatio^n - GoldenRatio^(-n);

e[n_, k_] := 0 /; k >= n;

e[n_, k_] := (e[n - 1, k]*e[n, k - 1] + 1)/e[n - 1, k - 1];

Table[Table[ Rationalize[N[e[n, k]]], {k, Mod[n, 2] + 1, n - 1, 2}], {n, 2, 16, 2}];

Flatten[%]

CROSSREFS

A002878, A004146

Sequence in context: A178519 A094503 A113897 * A183884 A135552 A181690

Adjacent sequences:  A158750 A158751 A158752 * A158754 A158755 A158756

KEYWORD

nonn,tabl

AUTHOR

Roger L. Bagula and Gary W. Adamson (rlbagulatftn(AT)yahoo.com), Mar 25 2009

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 16 13:30 EST 2012. Contains 205909 sequences.