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

A164004
Zero together with row 4 of the array in A163280.
6
0, 5, 10, 18, 28, 40, 54, 70, 88, 108, 130, 154, 180, 208, 238, 270, 304, 340, 378, 418, 460, 504, 550, 598, 648, 700, 754, 810, 868, 928, 990, 1054, 1120, 1188, 1258, 1330, 1404, 1480, 1558, 1638, 1720, 1804, 1890, 1978, 2068, 2160, 2254, 2350, 2448, 2548
OFFSET
0,2
FORMULA
Conjectures from Colin Barker, Apr 07 2015: (Start)
a(n) = n*(3+n) = A028552(n) for n > 1.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 4.
G.f.: x*(x^3 - 3*x^2 + 5*x - 5) / (x-1)^3. (End)
E.g.f.: x*(x+4)*exp(x) + x. - G. C. Greubel, Aug 28 2017
MAPLE
A033676 := proc(n) local a, d; a := 0 ; for d in numtheory[divisors](n) do if d^2 <= n then a := max(a, d) ; fi; od: a; end: A163280 := proc(n, k) local r, T ; r := 0 ; for T from k^2 by k do if A033676(T) = k then r := r+1 ; if r = n then RETURN(T) ; fi; fi; od: end: A164004 := proc(n) if n = 0 then 0; else A163280(4, n) ; fi; end: seq(A164004(n), n=0..80) ; # R. J. Mathar, Aug 09 2009
MATHEMATICA
Join[{0, 5}, Table[n*(n + 3), {n, 2, 50}]] (* G. C. Greubel, Aug 28 2017 *)
PROG
(PARI) x='x+O('x^50); concat([0], Vec(x*(x^3 -3*x^2 +5*x -5)/(x-1)^3)) \\ G. C. Greubel, Aug 28 2017
KEYWORD
nonn,easy,less
AUTHOR
Omar E. Pol, Aug 08 2009
EXTENSIONS
Extended beyond a(12) by R. J. Mathar, Aug 09 2009
STATUS
approved