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!)
A072390 Sum of two powers of 13. 6
2, 14, 26, 170, 182, 338, 2198, 2210, 2366, 4394, 28562, 28574, 28730, 30758, 57122, 371294, 371306, 371462, 373490, 399854, 742586, 4826810, 4826822, 4826978, 4829006, 4855370, 5198102, 9653618, 62748518, 62748530, 62748686, 62750714, 62777078, 63119810 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
13^n + 13^m, n = 0, 1, 2, 3 ..., m = 0, 1, 2, 3, ... n.
MATHEMATICA
Union[Total/@Tuples[13^Range[0, 9], 2]] (* Harvey P. Dale, Sep 15 2011 *)
Flatten[Table[Table[13^n + 13^m, {m, 0, n}], {n, 0, 10}]] (* T. D. Noe, Jun 18 2013 *)
PROG
(Python)
def aupto(lim):
pows, p = [], 1
while p < lim: pows.append(p); p *= 13
return sorted([a+b for a in pows for b in pows if b >= a and a+b <= lim])
print(aupto(63119810)) # Michael S. Branicky, Feb 14 2021
CROSSREFS
Sequence in context: A295083 A180877 A032461 * A213136 A117705 A330789
KEYWORD
easy,nonn,tabl
AUTHOR
Jeremy Gardiner, Jul 20 2002
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 May 8 23:08 EDT 2024. Contains 372341 sequences. (Running on oeis4.)