The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A346006 Successive numbers arising from the Moessner construction of the sequence of fourth powers on page 64 of Conway-Guy's "Book of Numbers". 4
0, 1, 4, 6, 4, 16, 32, 24, 8, 81, 108, 54, 12, 256, 256, 96, 16, 625, 500, 150, 20, 1296, 864, 216, 24, 2401, 1372, 294, 28, 4096, 2048, 384, 32, 6561, 2916, 486, 36, 10000, 4000, 600, 40, 14641, 5324, 726, 44, 20736, 6912, 864, 48, 28561, 8788, 1014, 52, 38416, 10976, 1176, 56, 50625, 13500, 1350, 60 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(4*k+1) = (k+1)^2 for k >= 0.
REFERENCES
J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996. Sequence can be obtained by reading the successive circled numbers in the second display on page 64.
LINKS
FORMULA
Let b=4. If n == -i (mod b) for 0 <= i < b, then a(n) = binomial(b,i+1)*((n+i)/b)^(i+1).
MAPLE
f:=proc(n, b) local i;
for i from 0 to b-1 do
if ((n+i) mod b) = 0 then return(binomial(b, i+1)*((n+i)/b)^(i+1)); fi;
od;
end;
[seq(f(n, 3), n=0..60)];
PROG
(Python)
from sympy import binomial
def A346006(n):
i = (4-n)%4
return binomial(4, i+1)*((n+i)//4)**(i+1) # Chai Wah Wu, Jul 25 2021
CROSSREFS
Sequence in context: A143174 A032241 A065748 * A019077 A019245 A019191
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 25 2021
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 June 11 17:16 EDT 2024. Contains 373315 sequences. (Running on oeis4.)