A316210 Number of integer partitions of the n-th Fermi-Dirac prime into Fermi-Dirac primes.
1, 1, 2, 2, 4, 7, 11, 17, 31, 37, 54, 109, 152, 283, 380, 878, 1482, 1906, 3101, 3924, 6197, 11915, 14703, 27063, 40016, 48450, 84633, 101419, 121250, 204461, 398916, 551093, 646073, 883626, 1030952, 1397083, 2522506, 3875455, 5128718, 7741307, 8860676
Offset: 1
Keywords
Examples
The a(6) = 7 partitions of 9 into Fermi-Dirac primes are (9), (54), (72), (333), (432), (522), (3222).
Crossrefs
Programs
-
Mathematica
nn=60; FDpQ[n_]:=With[{f=FactorInteger[n]},n>1&&Length[f]==1&&MatchQ[FactorInteger[2f[[1,2]]],{{2,_}}]] FDprimeList=Select[Range[nn],FDpQ]; ser=Product[1/(1-x^d),{d,FDprimeList}]; Table[SeriesCoefficient[ser,{x,0,FDprimeList[[n]]}],{n,Length[FDprimeList]}]
Comments