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!)
A192328 Numbers of the form 20*k+7 which are three times a square. 1
27, 147, 507, 867, 1587, 2187, 3267, 4107, 5547, 6627, 8427, 9747, 11907, 13467, 15987, 17787, 20667, 22707, 25947, 28227, 31827, 34347, 38307, 41067, 45387, 48387, 53067, 56307, 61347, 64827, 70227, 73947, 79707, 83667, 89787, 93987 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Text of the theorem in the paper mentioned in References: The necessary and sufficient condition so that a number of the form 20*k+7 is three times a square is that k is of the form 3*h*(5*h+3)+1 or 3*h*(5*h+7)+7.
A119617 gives the values of k.
A080512*120 gives the first differences.
REFERENCES
"Supplemento al Periodico di Matematica", Raffaello Giusti Editore (Livorno) - Mar 1901 - p. 75 (Problem 286 and its generalization, G. Cardoso-Laynes).
LINKS
Mohammed Yaseen, Table of n, a(n) for n = 1..10000 (first 1000 terms from Bruno Berselli)
FORMULA
G.f.: 3*x*(9 + 40*x + 102*x^2 + 40*x^3 + 9*x^4)/((1 + x)^2*(1 - x)^3).
a(n) = 3*((10*(n-1) + (-1)^(n-1) + 5)/2)^2.
a(n) = a(-n-1) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5).
Sum_{i=1..n} a(i) = n*(50*(n-1)*(n+1) + 15*(-1)^(n-1) + 39)/2.
a(n) = 3*A020742(A047218(n))^2.
MAPLE
select(t -> issqr(t/3), [seq(20*i+7, i=1..10000, 3)]); # Robert Israel, Apr 28 2023
MATHEMATICA
Select[20 Range[5000] + 7, IntegerQ[Sqrt[#/3]] &] (* or *) LinearRecurrence[{1, 2, -2, -1, 1}, {27, 147, 507, 867, 1587}, 40] (* Harvey P. Dale, Jul 06 2011 *)
CoefficientList[Series[3 (9 + 40 x + 102 x^2 + 40 x^3 + 9 x^4) / ((1 + x)^2 (1 - x)^3), {x, 0, 35}], x] (* Vincenzo Librandi, Aug 19 2013 *)
PROG
(Magma) [m: m in [7..10^5 by 20] | IsSquare(m/3)];
(PARI) for(k=0, 5*10^3, m=20*k+7; if(issquare(m/3), print1(m", ")));
(PARI) a(n)=my(m=n--\4); 1200*m^2+[360*m+27, 840*m+147, 1560*m+507, 2040*m+867][n%4+1] \\ Charles R Greathouse IV, Jun 29 2011
CROSSREFS
Sequence in context: A042422 A180578 A301757 * A129028 A133548 A033262
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Jun 28 2011
EXTENSIONS
Offset corrected by Mohammed Yaseen, Apr 27 2023
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 13:41 EDT 2024. Contains 371957 sequences. (Running on oeis4.)