login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A007481

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Number of subsequences of [ 1,...,n ] in which each even number has an odd neighbor.
(history; published version)
#24 by Russ Cox at Sun Jan 05 19:51:34 EST 2025
LINKS

R. K. Guy and W. O. J. Moser, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Scanned/34-2/guy.pdf">Numbers of subsequences without isolated odd members</a>, Fibonacci Quarterly 34:2 (1996), pp. 152-155.

Discussion
Sun Jan 05
19:51
OEIS Server: https://oeis.org/edit/global/3012
#23 by Russ Cox at Sun Jan 05 19:24:39 EST 2025
LINKS

R. K. Guy and W. O. J. Moser, <a href="httphttps://www.fq.math.ca/Scanned/34-2/guy.pdf">Numbers of subsequences without isolated odd members</a>, Fibonacci Quarterly 34:2 (1996), pp. 152-155.

Discussion
Sun Jan 05
19:24
OEIS Server: https://oeis.org/edit/global/3011
#22 by Jon E. Schoenfield at Fri Dec 17 11:10:45 EST 2021
STATUS

editing

approved

#21 by Jon E. Schoenfield at Fri Dec 17 11:10:42 EST 2021
AUTHOR
STATUS

approved

editing

#20 by Charles R Greathouse IV at Wed Mar 02 10:25:43 EST 2016
STATUS

editing

approved

#19 by Charles R Greathouse IV at Wed Mar 02 10:25:39 EST 2016
REFERENCES

R. K. Guy and W. O. J. Moser, Numbers of subsequences without isolated odd members. Fibonacci Quarterly, 34, No. 2, 152-155 (1996).

LINKS

T. D. Noe, <a href="/A007481/b007481.txt">Table of n, a(n) for n = 0..400</a>

R. K. Guy and W. O. J. Moser, <a href="http://www.fq.math.ca/Scanned/34-2/guy.pdf">Numbers of subsequences without isolated odd members</a>, Fibonacci Quarterly 34:2 (1996), pp. 152-155.

FORMULA

G.f.: (x^3+2*x+1)/(-2*x^4-3*x^2+1) [From . - _Harvey P. Dale, _, Feb 29 2012]

PROG

(PARI) a(n)=([0, 1, 0, 0; 0, 0, 1, 0; 0, 0, 0, 1; 2, 0, 3, 0]^n*[1; 2; 3; 7])[1, 1] \\ Charles R Greathouse IV, Mar 02 2016

CROSSREFS
STATUS

approved

editing

#18 by Reinhard Zumkeller at Sun Oct 25 13:52:45 EDT 2015
STATUS

editing

approved

#17 by Reinhard Zumkeller at Sun Oct 25 13:51:54 EDT 2015
COMMENTS

A055099(n) = a(2*n+1) - a(2*n) = a(2*(n+1)) - a(2*n+1). - Reinhard Zumkeller, Oct 25 2015

PROG

(Haskell)

a007481 n = a007481_list !! n

a007481_list = 1 : 2 : 3 : 7 : zipWith (+)

(map (* 3) $ drop 2 a007481_list) (map (* 2) a007481_list)

-- Reinhard Zumkeller, Oct 25 2015

CROSSREFS

Cf. A055099.

STATUS

approved

editing

#16 by Ray Chandler at Thu Jul 30 14:37:50 EDT 2015
STATUS

editing

approved

#15 by Ray Chandler at Thu Jul 30 14:37:46 EDT 2015
LINKS

<a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (0, 3, 0, 2).

STATUS

approved

editing