login

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”).

A163395
a(n) = (n-th even nonprime)^(n-th even number).
5
1, 16, 1296, 262144, 100000000, 61917364224, 56693912375296, 72057594037927936, 121439531096594251776, 262144000000000000000000, 705429498686404044207947776, 2315513501476187716057433112576
OFFSET
1,2
COMMENTS
Here n-th even nonprime = A163300(n), n-th even number = A005843(n), (A014076 U A163300 = A141468).
LINKS
FORMULA
a(n) = A163300(n)^A005843(n).
EXAMPLE
a(1) = 0^0 = 1, a(2) = 4^2 = 16, a(3) = 6^4 = 1296.
MAPLE
A163300 := proc(n) if n = 1 then 0; else for a from procname(n-1)+2 by 2 do if not isprime(a) then return a; end if; end do; end if; end proc: A005843 := proc(n) 2*n ; end: A163395 := proc(n) A163300(n)^A005843(n-1) ; end: seq(A163395(n), n=1..13) ; # R. J. Mathar, Oct 14 2009
MATHEMATICA
Join[{1}, Table[(2*(n - 1 + Mod[(n + 1), n]))^(2 n - 2), {n, 2, 10}]] (* G. C. Greubel, Dec 21 2016 *)
With[{nn=30}, Range[2, nn, 2]^Range[0, nn-2, 2]] (* Harvey P. Dale, Nov 09 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Extended by R. J. Mathar, Oct 14 2009
STATUS
approved