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!)
A228105 a(n) = 432*n^6. 1
0, 432, 27648, 314928, 1769472, 6750000, 20155392, 50824368, 113246208, 229582512, 432000000, 765314352, 1289945088, 2085181488, 3252759552, 4920750000, 7247757312, 10427429808, 14693280768, 20323820592, 27648000000, 37050964272, 48980118528 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For any n > 0, the equation y^2 = x^3 - a(n) has exactly one solution in natural numbers (x = 12*n^2 and y = 36*n^3).
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = A008585(n)*A008591(n)*A016744(n).
G.f.: 432*x*(1 + x)*(1 + 56*x + 246*x^2 + 56*x^3 + x^4) / (1 - x)^7.
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7) for n>6. - Colin Barker, Dec 11 2017
EXAMPLE
a(2) = 432*2^6 = 27648.
MAPLE
seq(432*n^6, n=0..22);
MATHEMATICA
Table[432*n^6, {n, 0, 22}]
LinearRecurrence[{7, -21, 35, -35, 21, -7, 1}, {0, 432, 27648, 314928, 1769472, 6750000, 20155392}, 40] (* Harvey P. Dale, Apr 06 2018 *)
PROG
(Magma) [432*n^6 : n in [0..22]];
(PARI) concat(0, Vec(432*x*(1 + x)*(1 + 56*x + 246*x^2 + 56*x^3 + x^4) / (1 - x)^7 + O(x^40))) \\ Colin Barker, Dec 11 2017
CROSSREFS
Cf. A134109.
Sequence in context: A109123 A223688 A269183 * A232905 A282752 A290180
KEYWORD
nonn,easy
AUTHOR
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 24 05:49 EDT 2024. Contains 371918 sequences. (Running on oeis4.)