OFFSET
0,1
COMMENTS
a(n) can also be calculated by transforming (3,18,8) applying the binomial transform twice. Cf. A098384.
LINKS
James Rayman, Table of n, a(n) for n = 0..2000
FORMULA
a(n) = 2^n * (n^2 + 8*n + 13). - James Rayman, Mar 27 2021
EXAMPLE
The hook-type least prime signatures with exactly three primes begin 30,60,120,...; therefore sequence begins A002033(30,60,120,...) = 13,44,132,...
PROG
(Python) def a(n): return 2**n * (n**2 + 8*n + 13) # James Rayman, Mar 27 2021
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Alford Arnold, Sep 06 2004
EXTENSIONS
More terms from James Rayman, Mar 27 2021
STATUS
approved