login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
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
CROSSREFS
Cf. A028552.
Sequence in context: A092390 A035608 A091386 * A025010 A299144 A058555
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)