Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #12 Nov 19 2017 01:42:41
%S 2,4,8,16,32,64,128,256,512,32,45,64,90,128,181,256,362,64,80,101,128,
%T 161,203,256,322,406,107,128,152,181,215,256,304,362,430,512,168,194,
%U 222,256,294,337,388,445,512,203,228,256,287,322,362,406,456,512,574
%N a(n) = floor(2^(n/(floor(n*log(2)/log(prime(n)))))).
%C The sequence comes from the relationship of the primes to powers of two: in Sierpiński gasket sets the number s(n)=log(prime(n))/log(2) is the Moran dimension of unique fractal types. I first thought of making numbers that take these to integers by multiplication. And then of using integers of those to make other integers as powers of two that were prime like.
%C The sequence is slow to increase and has an alternating effect so that it dips lower after reaching a peak.
%t Table[Floor[2^(n/(Floor[n * Log[2]/Log[Prime[n]]]))], {n, 60}]
%K nonn
%O 1,1
%A _Roger L. Bagula_, Jul 30 2002
%E Edited by _Robert G. Wilson v_, Jul 31 2002