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.

Previous Showing 11-12 of 12 results.

A378621 Antidiagonal-sums of absolute value of the array A175804(n,k) = n-th term of k-th differences of partition numbers (A000041).

Original entry on oeis.org

1, 1, 4, 5, 11, 16, 36, 65, 142, 285, 595, 1210, 2497, 5134, 10726, 22637, 48383, 104066, 224296, 481985, 1030299, 2188912, 4626313, 9743750, 20492711, 43114180, 90843475, 191776658, 405528200, 858384333, 1817311451, 3845500427, 8129033837, 17162815092
Offset: 0

Views

Author

Gus Wiseman, Dec 14 2024

Keywords

Examples

			Antidiagonal i + j = 3 of A175804 is (3, 1, 0, -1), so a(3) = 5.
		

Crossrefs

These are the antidiagonal-sums of the absolute value of A175804.
First column of the same array is A281425.
For primes we have A376681 or A376684, signed A140119 or A376683.
For composites we have A377035, signed A377034.
For squarefree numbers we have A377040, signed A377039.
For nonsquarefree numbers we have A377048, signed A377049.
For prime powers we have A377053, signed A377052.
The signed version is A377056.
The corresponding array for strict partitions is A378622, see A293467, A377285, A378971, A378970.
A000009 counts strict integer partitions, differences A087897, A378972.
A000041 counts integer partitions, differences A002865, A053445.

Programs

  • Mathematica
    nn=30;
    q=Table[PartitionsP[n],{n,0,nn}];
    t=Table[Sum[(-1)^(j-k)*Binomial[j,k]*q[[i+k]],{k,0,j}],{j,0,Length[q]/2},{i,Length[q]/2}]
    Total/@Abs/@Table[t[[j,i-j+1]],{i,nn/2},{j,i}]

A380412 First term of the n-th differences of the strict partition numbers. Inverse zero-based binomial transform of A000009.

Original entry on oeis.org

1, 0, 0, 1, -3, 7, -14, 25, -41, 64, -100, 165, -294, 550, -1023, 1795, -2823, 3658, -2882, -2873, 20435, -62185, 148863, -314008, 613957, -1155794, 2175823, -4244026, 8753538, -19006490, 42471787, -95234575, 210395407, -453413866, 949508390, -1931939460
Offset: 0

Views

Author

Gus Wiseman, Feb 03 2025

Keywords

Comments

Up to sign, same as A293467.

Crossrefs

The version for non-strict partitions is A281425, row n=0 of A175804.
Column n=0 of A378622.
A000009 counts strict integer partitions, differences A087897, A378972.
A266232 gives zero-based binomial transform of A000009, differences A129519.

Programs

  • Mathematica
    nn=10;Table[First[Differences[PartitionsQ/@Range[0,nn],n]],{n,0,nn}]

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) binomial(n,k) A000041(k).
Previous Showing 11-12 of 12 results.