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-1 of 1 results.

A060729 a(n+1) = a(n) + a(n minus the number of terms of the same parity as n so far).

Original entry on oeis.org

1, 2, 3, 4, 6, 9, 12, 16, 19, 25, 31, 37, 49, 55, 74, 83, 108, 120, 145, 161, 198, 217, 266, 291, 346, 377, 451, 482, 565, 602, 710, 765, 885, 940, 1085, 1159, 1357, 1431, 1697, 1771, 2117, 2191, 2642, 2725, 3207, 3290, 3855, 3963, 4673, 4781
Offset: 1

Views

Author

Robert G. Wilson v, Apr 22 2001

Keywords

Examples

			a(5) = a(4) + a(4 - the number of even terms so far) = a(4) + a(4-2) = 4 + 2 = 6.
		

Crossrefs

Programs

  • Mathematica
    a[ 1 ] = 1; a[ 2 ] = 2; a[ n_ ] := a[ n ] = Block[ {e = 0}, Do[ If[ EvenQ[ a[ k ] ], e++ ], {k, 1, n - 1} ]; If[ OddQ[ n ], a[ n - 1 ] + a[ n - 1 - e ], a[ n - 1 ] + a[ e ] ] ]; Table[ a[ n ], {n, 1, 50} ]
Showing 1-1 of 1 results.