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.

A278196 Partition numbers (A000041) of the form 2^2 * k for odd k.

Original entry on oeis.org

2436, 5604, 451276, 715220, 831820, 1300156, 7089500, 12132164, 15796476, 26543660, 190569292, 483502844, 761002156, 851376628, 1327710076, 2841940500, 3519222692, 9035836076, 54770336324, 1280011042268, 1820701100652, 3972999029388, 6085253859260
Offset: 1

Views

Author

Colin Barker, Nov 15 2016

Keywords

Comments

Also partition numbers having twice as many even divisors as odd divisors.
A subsequence of A225324.

Crossrefs

Programs

  • Mathematica
    Select[PartitionsP@ Range@ 210, Count[#, k_ /; EvenQ@ k] == 2 Count[#, k_ /; OddQ@ k] &@ Divisors@ # &] (* Michael De Vlieger, Nov 15 2016 *)
  • PARI
    maxk=300; L=List(); for(k=1, maxk, p=numbpart(k); if(p%2^2==0 & p\2^2%2==1, listput(L, p))); Vec(L)