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

A338510
a(n) is smallest number in column n >= 0 of the triangle in A247687.
1
9, 50, 484, 2312, 21904, 143648, 1098304, 8454272, 69488896, 544236032, 4315964416, 34410088448, 276019941376, 2206276984832, 17595407417344, 140741783355392, 1126398178164736, 9007405414350848, 72063366589579264, 576468448910508032, 4611760785521115136
OFFSET
0,1
COMMENTS
Since sigma(a(n)) = (2^(n+1) - 1)*(1 + p_n + (p_n)^2) where p_n = A014210(n+1), lim_{n->infinity} sigma(a(n)) = 2*a(n).
FORMULA
a(n) = 2^n * A014210(n+1)^2, n >= 0.
EXAMPLE
a(4) = 16 * 37^2 = 21904 since 37 is the first prime larger than 32.
MATHEMATICA
a338510[n_] := 2^n NextPrime[2^(n+1)]^2/; n>=0
Map[a338510, Range[0, 20]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Hartmut F. W. Hoft, Oct 31 2020
STATUS
approved