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

A081949
Smallest square which is one more than the product of n (not necessarily distinct) numbers > 1.
1
4, 9, 9, 25, 49, 225, 289, 961, 4225, 16129, 16129, 201601, 261121, 1050625, 1050625, 62995969, 67092481, 67092481, 67092481, 822140929, 4295098369, 17179607041, 129923481601, 129923481601, 274876858369, 274876858369, 4398042316801
OFFSET
1,1
EXAMPLE
a(2) = a(3) = 9 = 2*4+1 = 2*2*2 +1,a(6) = 225= 2*2*2*2*2*7 +1
PROG
(PARI) A = vector(30); count = 0; i = 1; while(count < 30, i = i + 1; n = i*i; k = bigomega(n - 1); while(count < k, count = count + 1; A[count] = n))
CROSSREFS
Cf. A081948.
Sequence in context: A095873 A141801 A177083 * A091657 A156047 A171001
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 02 2003
EXTENSIONS
More terms from David Wasserman, Jul 20 2004
STATUS
approved