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”).

A079299
Not a binomial number: not of form a^k +- b^k for k >= 2.
3
6, 14, 22, 30, 38, 42, 46, 62, 66, 70, 78, 86, 94, 102, 110, 114, 118, 134, 138, 142, 150, 154, 158, 166, 174, 182, 186, 190, 198, 206, 210, 214, 222, 230, 238, 246, 254, 258, 262, 266, 270, 278, 282, 286, 294, 302, 310, 318, 322, 326, 330, 334, 350, 354, 358
OFFSET
1,1
LINKS
MAPLE
N:= 1000: # to get all terms <= N
kmax:= floor(LambertW(2*ln(2)*N)/ln(2)):
S:= {};
for k from 2 to kmax do
bmax:= floor((N/k)^(1/(k-1)));
S:= S union select(`<=`, {seq(seq(b^k-a^k, a=0..b-1), b=1..bmax), seq(seq(b^k+a^k, a=0..b), b=1..floor(N^(1/k)))}, N);
od:
sort(convert({$1..N} minus S, list)); # Robert Israel, Jan 03 2019
CROSSREFS
Complement of A079298.
Sequence in context: A197127 A197171 A062316 * A043445 A189785 A017137
KEYWORD
nonn
AUTHOR
David W. Wilson, Feb 09 2003
STATUS
approved