%I #30 Aug 01 2024 01:38:14
%S 0,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,
%T 50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,
%U 96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132
%N Even numbers without 2.
%C Zero together with the even nonprimes. - _Omar E. Pol_, Aug 04 2009
%C A163300 U A014076 = A141468.
%C The nonprime numbers (A018252) begin: 1,4,6,8,9,10,12,14,15,... So the words "prime" and "nonprime" normally refer to the natural numbers or positive integers: 1,2,3,4,5,6,... (Zero is not a member of A018252. See also the definition of A141468). - _Omar E. Pol_, Aug 04 2009
%H G. C. Greubel, <a href="/A163300/b163300.txt">Table of n, a(n) for n = 1..1000</a>
%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (2,-1).
%F a(n) = 2*A087156(n).
%t Drop[Range[0,132,2],{2}] (* _Harvey P. Dale_, May 05 2012 *)
%o (PARI) a(n)=if(n>1,2*n,0) \\ _Charles R Greathouse IV_, Apr 17 2024
%o (Python)
%o def A163300(n): return n<<1 if n>1 else 0 # _Chai Wah Wu_, Jul 31 2024
%Y Cf. A087156, A014076, A141468, A018252.
%K nonn,easy
%O 1,2
%A _Juri-Stepan Gerasimov_, Jul 26 2009
%E New definition from _Charles R Greathouse IV_, Jun 23 2024