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!)
A104236 n*Golomb's sequence. 0
1, 4, 6, 12, 15, 24, 28, 32, 45, 50, 55, 72, 78, 84, 90, 112, 119, 126, 133, 160, 168, 176, 184, 216, 225, 234, 243, 252, 290, 300, 310, 320, 330, 374, 385, 396, 407, 418, 468, 480, 492, 504, 516, 528, 585, 598, 611, 624, 637, 650, 714, 728, 742, 756, 770, 784, 855, 870, 885, 900, 915, 930 (list; graph; refs; listen; history; text; internal format)
OFFSET
12,2
LINKS
EXAMPLE
a(4)=12 because Golomb's a(4)=3, thus 4*3=12
a(10)=50 because Golomb's a(10)=5, thus 10*5=50
MAPLE
N:= 10000: A001462[1]:= 1: B[1]:= 1: A001462[2]:= 2:
for n from 2 while B[n-1] <= N do
B[n]:= B[n-1] + A001462[n];
for j from B[n-1]+1 to B[n] do A001462[j]:= n end do
end do:
[seq(j*A001462[j], j=1..N)]; # Based on Robert Israel's program for A001462. - N. J. A. Sloane, Jan 03 2021
CROSSREFS
Cf. A001462.
Sequence in context: A256241 A364385 A247632 * A265225 A122781 A153355
KEYWORD
base,easy,nonn
AUTHOR
Alexandre Wajnberg, Apr 02 2005
EXTENSIONS
More terms from N. J. A. Sloane, Jan 03 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 April 19 16:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)