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.

A336433 Number of sequences of n numbers from 1 to n that do not have a subsequence that adds up to n.

Original entry on oeis.org

0, 0, 0, 1, 5, 68, 403, 7257, 61686, 1174434, 13810620, 335547727, 3783688286, 124486381056, 1935430229612, 55798127869680, 1058567311736669, 39819079382937334, 717447490866241055, 32064848897165970340, 666062878027691348450, 28916070816360797805534
Offset: 0

Views

Author

Pierre Abbat, Jul 21 2020

Keywords

Comments

The sequence is bounded above for odd n by (((n-1)/2)^n)*(2^((n-1)/2)).
Growth appears to be slightly faster than exponential, but irregular, with odd-numbered terms larger than the trend.

Examples

			For n=3, the only solution is 2,2,2.
For n=4, the 5 solutions are 3,3,3,3 and the four permutations of 3,3,3,2.
		

Crossrefs

Cf. A000312.

Programs

  • Python
    # See sequence.py link.

Extensions

a(19)-a(21) from Christopher L. Reedy, Aug 06 2020