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.

A357635 Numbers k such that the half-alternating sum of the partition having Heinz number k is 1.

Original entry on oeis.org

2, 8, 24, 32, 54, 128, 135, 162, 375, 384, 512, 648, 864, 875, 1250, 1715, 1944, 2048, 2160, 2592, 3773, 4374, 4802, 5000, 6000, 6144, 8192, 9317, 10368, 10935, 13122, 13824, 14000, 15000, 17303, 19208, 20000, 24167, 27440, 29282, 30375, 31104, 32768, 33750
Offset: 1

Views

Author

Gus Wiseman, Oct 28 2022

Keywords

Comments

We define the half-alternating sum of a sequence (A, B, C, D, E, F, G, ...) to be A + B - C - D + E + F - G - ...
The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k). This gives a bijective correspondence between positive integers and integer partitions.

Examples

			The terms together with their prime indices begin:
    2: {1}
    8: {1,1,1}
   24: {1,1,1,2}
   32: {1,1,1,1,1}
   54: {1,2,2,2}
  128: {1,1,1,1,1,1,1}
  135: {2,2,2,3}
  162: {1,2,2,2,2}
  375: {2,3,3,3}
  384: {1,1,1,1,1,1,1,2}
  512: {1,1,1,1,1,1,1,1,1}
  648: {1,1,1,2,2,2,2}
  864: {1,1,1,1,1,2,2,2}
  875: {3,3,3,4}
		

Crossrefs

The version for k = 0 is A000583, standard compositions A357625-A357626.
The version for original alternating sum is A345958.
Positions of ones in A357633, non-reverse A357629.
The skew version for k = 0 is A357636, non-reverse A357632.
These partitions are counted by A035444, skew A035544.
The non-reverse version is A357851, k = 0 version A357631.
A056239 adds up prime indices, row sums of A112798.
A316524 gives alternating sum of prime indices, reverse A344616.
A351005 = alternately equal and unequal partitions, compositions A357643.
A351006 = alternately unequal and equal partitions, compositions A357644.
A357641 counts comps w/ half-alt sum 0, even-length A357642.

Programs

  • Mathematica
    primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
    halfats[f_]:=Sum[f[[i]]*(-1)^(1+Ceiling[i/2]),{i,Length[f]}];
    Select[Range[1000],halfats[Reverse[primeMS[#]]]==1&]