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

A163998 Primes p having the same parity as the number of partitions of p.

Original entry on oeis.org

2, 3, 5, 7, 13, 17, 23, 29, 37, 41, 43, 53, 61, 67, 71, 73, 83, 89, 107, 127, 139, 157, 173, 181, 193, 199, 211, 223, 229, 233, 239, 251, 257, 263, 269, 277, 281, 283, 293, 311, 313, 331, 349, 367, 373, 389, 401, 421, 433, 443, 457, 461, 463, 467, 479, 491, 499
Offset: 1

Views

Author

Omar E. Pol, Aug 09 2009

Keywords

Comments

Except the first term, primes with an odd number of partitions.
Primes in A194798. - Omar E. Pol, Mar 17 2012

Examples

			7 is in the sequence because the number of partitions of 7 is equal to 15 and both 7 and 15 have the same parity.
		

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[100]], Mod[PartitionsP[#] - #, 2] == 0 &] (* T. D. Noe, Jan 30 2012 *)

Extensions

More terms from D. S. McNeil, May 10 2010

A163996 Primes with a composite number of partitions.

Original entry on oeis.org

7, 11, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293
Offset: 1

Views

Author

Omar E. Pol, Aug 09 2009

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[100]],!PrimeQ[PartitionsP[#]]&] (* Harvey P. Dale, Jun 22 2014 *)

Formula

A000040 \ A038601. [From R. J. Mathar, Sep 27 2009]

Extensions

More terms from R. J. Mathar, Sep 27 2009

A193830 Even partition numbers of prime numbers.

Original entry on oeis.org

2, 56, 490, 6842, 124754, 831820, 13848650, 133230930, 214481126, 271248950, 541946240, 851376628, 5964539504, 11097645016, 37027355200, 45060624582, 142798995930, 207890420102, 625846753120, 1820701100652, 3068829878530, 37561133582570, 114540884553038
Offset: 1

Views

Author

Omar E. Pol, Aug 06 2011

Keywords

Examples

			The even number 56 is in the sequence as the partition number of the prime number 11.
		

Crossrefs

Programs

  • Mathematica
    Select[PartitionsP[Prime[Range[200]]],EvenQ] (* Harvey P. Dale, Jun 20 2015 *)
Showing 1-3 of 3 results.