login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A048951
(2,4) Ulam sequence
3
2, 4, 6, 8, 12, 16, 22, 26, 32, 36, 52, 56, 72, 76, 94, 96, 106, 114, 124, 138, 144, 154, 164, 174, 194, 198, 204, 212, 228, 252, 262, 276, 290, 296, 310, 350, 354, 360, 364, 378, 394, 412, 418, 438, 442, 472, 476, 482, 486, 506, 516, 520, 546, 564, 618, 632
OFFSET
1,1
COMMENTS
This sequence is 2*A002858, since in general U(k*m, k*n) = k * U(m, n), where U(m, n) is the (m, n)-Ulam sequence. - Enrique Navarrete, May 05 2017
LINKS
Eric Weisstein's World of Mathematics, Ulam Sequence
Wikipedia, Ulam number
PROG
(Haskell)
a048951 n = a048951_list !! (n-1)
a048951_list = 2 : 4 : ulam 2 4 a048951_list
-- Function ulam as defined in A002858.
-- Reinhard Zumkeller, Nov 03 2011
CROSSREFS
Cf. A002858.
Sequence in context: A008764 A228354 A065386 * A326504 A058629 A323508
KEYWORD
nonn
STATUS
approved